删除joomla菜单的列表样式装饰

时间:2015-08-15 13:57:12

标签: html css joomla

我想删除Joomla菜单的文本装饰。

菜单是一个简单的html列表,我尝试将text-decoration设置为' list-style',' list-style-type'和text-decoration-line到没有。但没有任何作用。

我还将常规liul选择器设置为特定的类/ 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;
}

joomla menu

我需要删除项目前的标记和文本下的白线。

更新

我通过添加以下内容修改了文本下面的行:

      border-bottom: none;

1 个答案:

答案 0 :(得分:1)

是否使用了背景或列表式图像?试试这个:

ul, ul li {
    background-image:none;
    list-style-image:none;
}