麻烦不能让子弹出现

时间:2013-08-23 12:16:36

标签: css feedburner

我为不得不提出这样一个基本问题而道歉,但我真的很难过,任何帮助都会受到最高的赞赏。

在此页面上; http://www.your-adrenaline-fix.com/Motocross-blog.html我有一个Feedburner Feed,显示最近添加的页面的元描述,但使用以下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 
}

我仍然无法阻止子弹的显示。

我还彻底审阅了以下帮助文章,但似乎没有任何效果。 https://support.google.com/feedburner/answer/78974?hl=en

我提前感谢你们,

Stuart K

4 个答案:

答案 0 :(得分:0)

您必须在list-style-type: none;上设置li而不是ul

正确的CSS:

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

答案 1 :(得分:0)

.feedburnerFeedBlock li { 
list-style: none 
}

答案 2 :(得分:0)

您的ul具有覆盖您的CSS的CircleBullet类。

而不是在div上设置列表样式 - > ul,将它直接设置到CircleBullet类

答案 3 :(得分:0)

尝试通过将其合并到样式表来覆盖CSS。

对于实例,

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

希望这有帮助。

相关问题