无法在ol li列表中查看数字

时间:2015-09-11 13:26:57

标签: css wordpress-theming html-lists

我在网站上有一些编号列表,其中包含我目前正在开发的wordpress模板。但是,我无法在编号列表之前看到这些数字。

我已将list-style-type: decimal设为ol>李并尝试了其他一些事情,但似乎都没有。

有人能帮助我吗? (这可能是一个非常明显的错误,但我不知道如何做到这一点)

谢谢!

Example page

5 个答案:

答案 0 :(得分:2)

您不会在个人list-style-type上设置li,而是在包含olul的<{1}}上设置。{/ p>

在你的CSS中,你设置了这个:

.wrapper .entry-content ol {
    list-style-type: none;
    margin: 0;
}

当你的列表样式需要25px左边的填充时,你还要在CSS中进一步重置填充。

试试这个:

.wrapper .entry-content ol {
    list-style-type: decimal;
    margin: 0;
    padding-left: 25px;
}

答案 1 :(得分:0)

尝试使用

ul {        
 list-style-position: inside;
}

答案 2 :(得分:0)

试试这个:list-style-type: decimal !important; 谨慎使用。

答案 3 :(得分:0)

你已经转过身了

class Sequence:

    def __init__(self, lastsequence, start, end):
        if start <= lastsequence.end+1:
            #don't create the object and set end of the lastsequence to start+4
        self.start = start 
        self.end = end

你需要重新打开它们。

.wrapper .entry-content ol {
    list-style-type: none;
}

答案 4 :(得分:0)

我做了一个小测试页面:

<html>
	<head>
		<title>Test Page</title>
	</head>
	<body>
		<ul>
			<li>ul no style</li>
			<li>test</li>
		</ul></br>
		<ul style="list-style-type: decimal">
			<li>ul with style</li>
			<li>test</li>
		</ul></br>
		<ol style="list-style-type: decimal">
			<li>ol with style</li>
			<li>test</li>
		</ol></br>
		<ol>
			<li>ol without style</li>
			<li>test</li>
		</ol>
	</body>
</html>

如您所见,设置ordered list的样式是不必要的。

如果您希望数字 NOT 包含样式并使用<ol></ol>标记。