Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / EZ Navigation Links - Changing Colors!

EZ Navigation Links - Changing Colors!

Locked

Views: 1,736

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
9 Jul 2006, 9:56 PM
#1
mlm2005 avatar

mlm2005

Zen Follower

Join Date:
Mar 2005
Posts:
141
Plugin Contributions:
0

EZ Navigation Links - Changing Colors!

Here is the source code from one of my pages:

<!--bof-header ezpage links--> <div id="navEZPagesTop">

MY EZ NAVIGATION LINKS ARE HERE

</div> <!--eof-header ezpage links-->

Here is my CSS

#navEZPagesTop {
background-color: #9F5B8C;
a color:white;
}

My Navigation is purple against a purple background!

Please, can someone help me with figuring out what code to change?

Thanks!

9 Jul 2006, 10:02 PM
#2
kim avatar

kim

Obaa-san

Join Date:
Jun 2003
Posts:
26,591
Plugin Contributions:
0

Re: EZ Navigation Links - Changing Colors!

a color:white;

Your syntax is wrong.

Try:

#navEZPagesTop a {
background-color: #9F5B8C;
color: #ffffff;
}

9 Jul 2006, 10:03 PM
#3
kim avatar

kim

Obaa-san

Join Date:
Jun 2003
Posts:
26,591
Plugin Contributions:
0

Re: EZ Navigation Links - Changing Colors!

9 Jul 2006, 10:35 PM
#4
mlm2005 avatar

mlm2005

Zen Follower

Join Date:
Mar 2005
Posts:
141
Plugin Contributions:
0

Re: EZ Navigation Links - Changing Colors!

Hi Kim,

Interestingly enough that changed only the double colons in between each navigation link. As a quick fix I turned the background of that bottom navigation bar (below the logo) back to white so at least you can read the links now.

Thanks for your help.