Hi,
I want to change the font size and colour of the category links that automatically appear in the header.
Can someone let me know where I can do this?
Thanks
Hi,
I want to change the font size and colour of the category links that automatically appear in the header.
Can someone let me know where I can do this?
Thanks
Fl,
Did you take a look above on this page on the Tutorials/Faq and search for the question.
You will find the answer in your stylesheet.css
- #navMain
A helpful tool is downloading the browser Moxilla firefox with the add on called Web Developer and Firebug
- A killer tools to quick find the declarations in the stylesheet make changes then upload to your site
Are You Vulnerable for an Accessibility Lawsuit?
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL, Domain, and MagicThumb with semi-annual and longer hosting
Thanks, I'll check those tutorials. I did search forum but forgot to look there, though I"ve been on FAQ a few times and not noticed something on this.
Will have a look again though.
Fl,
If you need any future assistance just post back.
You need to edit your_template/ stylesheet.css
Look for:
#navMain ul {font-size: ?}
#navMain ul li a {color: ?}
- just change the ? to as needed
- notice the #navMain ul li a, has other declaration associated with her, you will half to delete her and add below a seperate declaration to control the color so that all do not change...
Are You Vulnerable for an Accessibility Lawsuit?
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL, Domain, and MagicThumb with semi-annual and longer hosting
I tried to find the above, but only found this which doesn't appear to refer to font size or colour:
Am I at the right place?#navMain ul, #navSupp ul, #navCatTabs ul {
margin: 0;
padding: 0.5em 0em;
list-style-type: none;
text-align: center;
line-height: 1.5em;
}
#navMain ul li, #navSupp ul li, #navCatTabs ul li {
display: inline;
}
#navMain ul li a, #navSupp ul li a, #navCatTabs ul li a {
text-decoration: none;
padding: 0em 0.5em;
margin: 0;
color: #ffffff;
white-space: nowrap;
Thanks
Fl,
#navMain ul li a, #navSupp ul li a, #navCatTabs ul li a {
text-decoration: none;
padding: 0em 0.5em;
margin: 0;
color: #ffffff;
white-space: nowrap;
- The highlighted red font above will be the declaration in the elements to change.
- Without a link to your site remember the override file to edit please.
Are You Vulnerable for an Accessibility Lawsuit?
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL, Domain, and MagicThumb with semi-annual and longer hosting