Problems overriding list-style: none outside none

GK User
Thu Jun 28, 2012 4:58 pm
I am trying to set a style of list-style: circle outside none in a Joomla article but it is being overridden somewhere. So far I have added !important to the style in my article as well as changed the list-style: none definition of line 54 in template.css

This is frustrating. Please help me change the style. It is important that my <ul>'s have a list-style-type other than "none".

Thank you.
User avatar
Fresh Boarder

Konrad M
Thu Jun 28, 2012 5:58 pm
HI,
Try add this to override.css
Code: Select all
.item-page ul {
    list-style:outside;
}
.item-page li{
   list-style-type:circle;
}
.pagenav {
    list-style:none;
}
.pagenav li {
    list-style-type:none;
}

and remember to enable override.css option in template settings.
User avatar

GK User
Thu Jun 28, 2012 6:57 pm
Hello,
Thank you for your quick response! I applied the CSS you provide and activated override.css but it does not work. Is there another option?

Thank you.
User avatar
Fresh Boarder

Konrad M
Thu Jun 28, 2012 7:04 pm
Please give me url to the page with list you added.
User avatar


cron