Search…

X3 Photo Gallery Support Forums

Search…
 
NAOKI
Topic Author
Posts: 5
Joined: 19 Feb 2009, 02:50

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

26 Feb 2009, 02:07

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!!
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14003
Joined: 30 Sep 2006, 03:37

03 Mar 2009, 23:17

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
 
NAOKI
Topic Author
Posts: 5
Joined: 19 Feb 2009, 02:50

thanks a lot!

04 Mar 2009, 02:09

thanks for help....
I will try it on my best.... :D