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
Hi again,
I tried this, but it changes the 'home' and 'log in' links at the top of the page.
I'm trying to change the size and colour of the 'categories' links that appear just below the header. I think I said 'in' the header in my first post, when I should have said 'below' the header.
Thanks
Fl,
Now we are on the right page..
Look for this in the stylesheet.css
#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;
Change to this:
1. notice we half to separate out the element from the other two to control this alone...#navMain ul li a, #navSupp ul li a {
text-decoration: none;
padding: 0em 0.5em;
margin: 0;
color: #ffffff;
white-space: nowrap;
#navCatTabs ul li a {
text-decoration: none;
padding: 0em 0.5em;
margin: 0;
color: #ffffff;
white-space: nowrap;
2. change the ffffff to whatever you like
Last edited by haredo; 8 Mar 2009 at 07:54 AM.
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
Hi,
Thanks, though just tried that, and it decimated the site. Ended up with two tiles at the top, links bunched together, side box borders dissapeared, plus a few other things.
Sure I got it right as I copied your text into word pad then pasted it over the top of the one you said to replace it with in CSS.
Probably turn out something I did wrong...
I had a similar problem after editing my stylesheet... I had missed a closing bracket '}'
In fact, looking at the code above, none of it has the closing brackets after each style statement and if you copied and pasted then you would be missing the closing brackets...
ie. (add the red bracket to the end of each style statement)
#stylesettings {
setting1:xxxxx;
setting2:xxxxx;
}
Last edited by matbourne; 11 Mar 2009 at 08:03 PM. Reason: Addition