MyBB Community Forums

Full Version: change color.......
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 30rwdxf.png]


how to change this color.

Sad
URL?
1. Go to Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode.

2. Find:

.tcat a:link {
    color: #000000;
}

.tcat a:visited {
    color: #000000;
}

.tcat a:hover, .tcat a:active {
    color: #000000;
}

3. Change #000000 to the color you want (e.g. #fff for white, #ff0000 for red).
Calendar,Help, and search button font color not changed.

url is www.nepalgsm.com
You need to change all of the #000000 in the code above.
i do same as you say , but not changed

here is code i changed

.tcat a:link {
color: ##00FF00;
}

.tcat a:visited {
color: #00FF00;
}

.tcat a:hover, .tcat a:active {
color: #00FF00;
}
You have an extra # in your code. Replace with:

.tcat a:link {
color: #00FF00;
}

.tcat a:visited {
color: #00FF00;
}

.tcat a:hover, .tcat a:active {
color: #00FF00;
}
Big GrinBig GrinBig Grin

oops ya, wrong code from me.

ya its working good now.

thanks