How can I change font color only in service menu?
How can I change font color only in service menu? |
Do you know CSS? Those are anchor tags. You will have the colour of the text but you also have the active and visited and hover colours you can set. The CSS controlling the service menu block is in general.css; div.sys-service-menu You could add for the anchor tags and see if it overrides the settings for anchors. div.sys-service-menu a {color:#xxx;} replacing xxx with the colour codes; in this case hex values. (note, I think I did that correctly)
See this page: http://www.cssbasics.com/chapter_11_css_anchors_links_pseudo_classes.html Geeks, making the world a better place |
I know a little css, I do almost all of the changes myself. Sometimes I need advice as in this case :)
div.sys-service-menu {
float: left;
line-height: 60px;
color: #666666;
}
a:link {
color: #666666;
}
Do you know CSS? Those are anchor tags. You will have the colour of the text but you also have the active and visited and hover colours you can set. The CSS controlling the service menu block is in general.css; div.sys-service-menu You could add for the anchor tags and see if it overrides the settings for anchors. div.sys-service-menu a {color:#xxx;} replacing xxx with the colour codes; in this case hex values. (note, I think I did that correctly)
See this page: http://www.cssbasics.com/chapter_11_css_anchors_links_pseudo_classes.html
|
as geek_girl wrote, you would have to add; div.sys-service-menu a { to general.css file |
Ok it works :) thanks a lot GG and rhimpr! |