sorry to keep posting like a mad man here.. i just realized an adverse affect to the code i added to the tpl. it caused my product list font colors to grey like the links... any way to isolate this to just the navcattabs section?
sorry to keep posting like a mad man here.. i just realized an adverse affect to the code i added to the tpl. it caused my product list font colors to grey like the links... any way to isolate this to just the navcattabs section?
I figured you'd see the error of your way by changing EVERY a tag in the entire cart.
Most items are in a wrapper or div. Use something like navCatTabs ul li a VERSUS just plain a.
At least you've learned how to change every link if you want to.![]()
A little help with colors.
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.
i must be doing something wrong here.. after i did as you suggested (i think i did it right) everything seems to revert back to before i added it therefore i see login in blue, etc. here's the code i added
<style type="text/css">
navCatTabs ul li a:link {
COLOR: #9a9a9a;
}
navCatTabs ul li a:visited {
COLOR: #9a9a9a;
}
navCatTabs ul li a:hover {
COLOR: #FF0000;
}
navCatTabs ul li a:active {
COLOR: #00FF00;
}
</style>
First of all take a chill pill, drink a margarita, or something. Whatever it takes to get off that horse you've jumped on and rode madly off in all directions!
- The css styles go (amazingly enough) in the stylesheet.css NOT the file.
- You cannot just throw a link in an unordered list without surrounding that link with <li></li>
It certainly won't do what you tell it in the css if it isn't laid out that way.
Move the css to the stylesheet and surround those orphan a tags with their proper tag.![]()
A little help with colors.
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.
Glad you got it going![]()
A little help with colors.
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.