【问题标题】:How to remove the bullet points from this WordPress theme? Thanks如何从这个 WordPress 主题中删除要点?谢谢
【发布时间】:2020-02-11 18:21:23
【问题描述】:

这是css代码。如果您能告诉我如何删除侧面菜单上的项目符号,我将不胜感激。链接:https://www.ability.com.pk/executive-search-selection/

}

.rt-menu.element-one ul.menu li{
}

.rt-menu.element-one ul.menu li a{
    display:block;
    padding:5px 25px 9px 25px;
    font-weight:400;
    font-size:17px;
    color:#fff;
    line-height:27px;
    opacity:0.9;
    transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
}

.rt-menu.element-one ul.menu li a:hover,
.rt-menu.element-one ul.menu li.current-menu-item a{
    opacity:1;
    background-color:rgba(255,255,255,0.12);
}

.rt-menu.element-one ul.menu li ul li a{
    padding-left:40px;
}

【问题讨论】:

    标签: css wordpress menu wordpress-theming custom-wordpress-pages


    【解决方案1】:

    试试这个代码..

    css

    .side-menu ul li {
        list-style: none;
    }
    

    【讨论】:

    • 不工作我在 css wpbakery 中做到了。普通文本框正在删除项目符号,但菜单没有。
    • 我检查了 ttps://www.ability.com.pk/executive-search-selection/ 你的链接.. 它工作正常。
    【解决方案2】:
    1. 在您主题的 style.css 中输入此代码...
    2. 在管理面板的自定义 css 中添加自定义 css 这里是位置...

    试试这个代码.. 希望你能找到你想要的结果

    这里是代码......

     .entry-content ul li {
          list-style: none;
        }
    

    如果还不行,你需要把 !important 放进去..

    .entry-content ul li {
          list-style: none !important;
        }
    

    【讨论】:

      猜你喜欢
      • 2020-08-10
      • 1970-01-01
      • 2020-08-25
      • 2021-12-28
      • 1970-01-01
      • 2020-09-15
      • 2022-12-04
      • 1970-01-01
      • 2019-12-03
      相关资源
      最近更新 更多