Page 1 of 1

[X2] How to change...the color of fonts....? help...

Posted: 26 Feb 2009, 02:07
by NAOKI
if I want to change the color of fonts on menu botton....
please let me how to do it?

p.s. I tried to change the "imagevue.css"...
----------------------------------------------------
body {
font-family: "standard 07_53";
font-size: 8px;
color: #7c8e20;--------->here?
}a:link {
color: #94AB27;--------->here?
----------------------------------------------------

but it doesn't works...... :( :( :(
please help me....thanks a lot!!

Posted: 03 Mar 2009, 23:17
by mjau-mjau
You are on the correct path - You need to edit your theme STYLESHEET.

Go to admin -> themes -> edit your theme -> edit theme stylesheet. To change the color of the fonts in the main menu, look for items that start with ".mainmenu". For example:
Code
.mainmenu {
	color: #FFFFFF;
	font-size: 15px;
}
...
.mainmenu_title {
	font-size: 14px;
}
The top class sets styles for ALL text in the main menu, while the bottom style sets styles for only the text title. You can set the color attribute in any of these classes. Also, remember to clear your browser cache after updating CSS! Many browsers will cache previously loaded CSS styles.

More about the CSS stylesheets here:
viewtopic.php?t=4270

thanks a lot!

Posted: 04 Mar 2009, 02:09
by NAOKI
thanks for help....
I will try it on my best.... :D