Reputation: 1171
Have setup a Wordpress site (V3.1.2) and have installed Download Monitor plugin to give me a downloads gallery.
The issue is that I get these blue bullet points next to download items in the left column:
It has its own CSS file, but from using Chrome Developer tools, it appears that it is picking up these bullet points from my Boldy theme:
#content #colLeft ul li, #content #colLeft ol li {
padding: 5px 0 5px 25px;
background: url(images/bullet_list.png) 0 8px no-repeat;
I am new to CSS and I am sure this is a noob question.
How can I create a rule to remove bullet points from this download gallery, whilst preserving the fact that in blog posts (like this), I can still make use of bullet points?
Upvotes: 0
Views: 1289
Reputation: 8540
You could add a CSS rule to remove the bullets on your downloads page only:
#content #colLeft #download-page ul li,
#content #colLeft #download-page ol li{
padding: 5px 0 5px 5px;
background: none;
}
This rule targets lists inside the #download-page div. It can be placed in your main stylesheet to override the default bullet styling.
Upvotes: 3