Page 1 of 1

Custom link and text color on navigation menu

PostPosted: Tue Mar 22, 2011 12:15 am
by ecomm42
Hello,

I've been trying to modify the colors of the navigation menu, but I can't seem to figure out how to modify it without modifying the rest of the template. The template I'm using is the one that came with default installation of ShopSite.

How can I adjust its appearance?

Re: Custom link and text color on navigation menu

PostPosted: Tue Mar 22, 2011 7:48 am
by ShopSite Lauren
What is the URL to your website so that I can see what template you are using? Some templates have a built in navigation feature that is displayed if the actual "Navigation" feature is not being used. For most templates, if the Navigation feature under Preferences > Navigation is being used, then you can add the following CSS into your header field to override the template colors for the navigation.

<style type="text/css">
.suckertreemenu ul li {
background-color: #123456;
}
.suckertreemenu ul li a {
background-color: #123456;
color: white;
}
.suckertreemenu ul li a:hover{
background-color: black;
color: white;
}
</style>