Change font color in service menu

How can I change font color only in service menu?

Quote · 9 Jan 2014

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) Smile  If not, look it up.

 

See this page: http://www.cssbasics.com/chapter_11_css_anchors_links_pseudo_classes.html

Geeks, making the world a better place
Quote · 9 Jan 2014

 I know a little css, I do almost all of the changes myself. Sometimes I need advice as in this case :)


Of course I tried to add the same color but unfortunately without success. Here's what I did:

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) Smile  If not, look it up.

 

See this page: http://www.cssbasics.com/chapter_11_css_anchors_links_pseudo_classes.html

 

Quote · 9 Jan 2014

as geek_girl wrote, you would have to add;

div.sys-service-menu a {
color:#666666;
}

to general.css file

Quote · 10 Jan 2014

 Ok it works :) thanks a lot GG and rhimpr!

Quote · 10 Jan 2014
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.