2012-06-10 44 views
1

我有一個WordPress博客文章中的無序列表,不會顯示項目符號。我已經嘗試過多種方式來展示它,但它不會。無序列表將不會顯示在WordPress自定義主題帖子內的項目符號

這裏的鏈接(文字桌面圖像以上): http://www.sherigarvin.com/work-project-3/

這是我已經試過:

  • 刪除在CSS的UL/OL規則重置
  • 添加特定的上行規則與列表樣式:光盤; & list-style-type:disc;增加了列表式:光盤; to css reset
  • 將style.css的一般規則添加到list-style:disc; & list-style-type:disc;
  • list-style-type的內聯樣式:disc;

感謝您的幫助......

回答

2

我建議增加一個margin-leftli元素,或者可能宣佈:list-style-position: inside;(這將放置discli元素的寬度內,以證明規則是否適用)。

ul li { 
    list-style-type: disc; 
    margin-left: 1.5em; /* which should give space for the disc to show */ 
    list-style-position: inside; /* will put the disc inside of the li 
            element, for debugging purposes */ 
} 

參考文獻:

+0

就是這樣,謝謝你保存我的額頭再次傷痕! – Jason

+0

不客氣;很高興得到了幫助! –

+0

我添加了list-style:disc inside none;在一般的ul規則。 – Jason

0

這裏是一個內嵌式的,我就用UL,似乎更好地工作:

<ul style="list-style-type: disc; 
margin-left: 2.5em; 
list-style-position: outside;"> 
2

另一件事看是看,如果你的CSS元素上有display:block地方。通過刪除display:block它將使列表樣式再次出現。

相關問題