我想删除Joomla菜单的文本装饰。
菜单是一个简单的html列表,我尝试将text-decoration
设置为' list-style',' list-style-type'和text-decoration-line
到没有。但没有任何作用。
我还将常规li
和ul
选择器设置为特定的类/ ID。
ul{
list-style-type: none;
text-decoration: none;
list-style: outside none none;
text-decoration-line: none;
}
li{
list-style-type: none;
text-decoration: none;
list-style: outside none none;
text-decoration-line: none;
}
我需要删除项目前的标记和文本下的白线。
我通过添加以下内容修改了文本下面的行:
border-bottom: none;
答案 0 :(得分:1)
是否使用了背景或列表式图像?试试这个:
ul, ul li {
background-image:none;
list-style-image:none;
}