Trouble With Not Being Able to NOT Make Bullets Appear

48 Views Asked by At

I apologize for having to ask such a basic question but I'm really stumped and any help would be most appreciated.

On this page; http://www.your-adrenaline-fix.com/Motocross-blog.html I have a Feedburner feed which displays the and meta descrip of recently added pages but with the following css

#MotocrossBlog {
    list-style-type:none !important;
    border:1px solid #000;
    padding:15px;
    margin:10px;
    background: #F9FFFF;
    box-shadow:4px 6px 7px #888888;
}


div.feedburnerFeedBlock ul { 
list-style-type: none 
}

I am STILL Unable to prevent the bullets from displaying.

I have also thoroughly reviewed the following help article but nothing seems to work. https://support.google.com/feedburner/answer/78974?hl=en

I thank you guys in advance,

Stuart K

4

There are 4 best solutions below

0
On
.feedburnerFeedBlock li { 
list-style: none 
}
2
On

Your ul has class CircleBullet which override your CSS.

Instead of setting list style on the div -> ul, set it dirrectly to your CircleBullet class

1
On

Try to override their CSS by incorporating it in your stylesheet.

For Instance,

#ContentColumn ul{list-style-type:none;}

Hope this helps.

1
On

You have to set list-style-type: none; on li not on ul.

Correct CSS:

div.feedburnerFeedBlock ul { 
    list-style-type: none 
}