Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Need help remove bullet points in menu

Need help remove bullet points in menu

Locked

Views: 4,940

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
8 Mar 2008, 10:27 PM
#1
nikita avatar

nikita

New Zenner

Join Date:
Mar 2008
Posts:
6
Plugin Contributions:
0

Need help remove bullet points in menu

Hello,

I am trying to customise the left nav where there are all the categories...

I have changed the left menu to be a list and not anymore a number of links as it is normally with zen cart.
Now that I have my list, I would like to modify it with CSS. I can change the font and everything...BUT I can't remove the bullet points... :frusty:

li.category-top a {
list-style-type:none;
list-style: none;
color:#009933;
font-weight:bold;
}

Here is my CSS...

Can someone help me??

9 Mar 2008, 12:01 PM
#2
nikita avatar

nikita

New Zenner

Join Date:
Mar 2008
Posts:
6
Plugin Contributions:
0

Re: Need help remove bullet points in menu

Can someone can help me???

:lookaroun

9 Mar 2008, 12:33 PM
#3
nikita avatar

nikita

New Zenner

Join Date:
Mar 2008
Posts:
6
Plugin Contributions:
0

Re: Need help remove bullet points in menu

OK... I found it!! :P

In case some one has the same problem... :lamo:

The CSS has to be like that:

:: For the top categories ::

li.category-top {
list-style-type:none;
list-style: none;
}

:: For the sub categories ::

li.category-products {
list-style-type:none;
list-style: none;
}

9 Mar 2008, 1:39 PM
#4
marg avatar

marg

Totally Zenned

Join Date:
Mar 2004
Posts:
642
Plugin Contributions:
0

Re: Need help remove bullet points in menu

Cool beans! Thanks for the follow-up. :smile: