MyBB Community Forums

Full Version: change link color independent??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
HI..im trying to change the link colors....I want the top links (circled in yellow) to be white and the forum links (circled in yellow) to be black......but when I changed the top it also changed the forum links.....is there a way to do this independent of each other? I have 1.8.5 and im doing this in global css

thanks in advance.

chris
To change color in header links, you can add following code

color: #362D28;


in to the

#header ul.menu li a 

in css.

eg:

#header ul.menu li a {
    background-image: url("../../../images/headerlinks_sprite.png");
    background-repeat: no-repeat;
    display: inline-block;
    line-height: 16px;
    padding-left: 20px;
    color: #362D28;
}


Try to use "Inspect Element tool" in your browser to see css of element. Also you can use Firebug addon for get css from firefox.

And use Instant css extention (CSS Live Reloder) for get instant css changes in your browser.