Viewing 5 replies - 1 through 5 (of 5 total)
  • for help with formatting problems, please post a link to your site.

    Thread Starter martingerbrandy

    (@martingerbrandy)

    in /wp-content/themes/easel/style.css:
    (the white link)

    .menu ul li a:link, .menu ul li a:visited, .menunav a:link, .menunav a:visited  {
    	color: #fff;
    }

    in /wp-content/themes/easel/schemes/greymatter.css:
    (the yellow hover)

    .menunav-prev a:hover, .menunav-next a:hover, .menunav-rss:hover, .menu ul li a:hover, .menu ul li a.selected {
    	color: #fcff00;
    	background: -moz-linear-gradient(100% 100% 90deg, #303030, #444, #000 100%);
    	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 1.0)),to(rgba(56, 56, 56, 3.0)));
    	-moz-border-radius: 10px;
    	-khtml-border-radius: 10px;
    	-webkit-border-radius: 10px;
    	border-radius: 10px;
    }

    (the yellow ‘current’ state)

    /* this is the color of the text in the menubar when its on that page */
    .menu .current_page_item a {
    	color: #fcff00 !important;
    }
    Thread Starter martingerbrandy

    (@martingerbrandy)

    @alchymyth Thanks a lot, never thought to look over there, can I also use a child theme to change this? or do I just have to change the css on this?

    for changing this in a child theme’s css, you would need to know in which sequence the styleshets are called.
    it should be possible.

    in extreme you could try and use the !important in the styles to force the formatting;
    example:

    .menu .current_page_item a {
    	color: #fcff00 !important;
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Theme: Easel] can't change the yellow color from the menu’ is closed to new replies.