Removing “bullets” from unordered list

    前端 未结 6 919
    温柔的废话
    温柔的废话 2020-12-09 01:01

    I have set this:

    list-style: none outside none;
    

    And HTML:

    6条回答
    •  [愿得一人]
      2020-12-09 01:49

      ul.menu li a:before, ul.menu li .item:before, ul.menu li .separator:before {
        content: "\2022";
        font-family: FontAwesome;
        margin-right: 10px;
        display: inline;
        vertical-align: middle;
        font-size: 1.6em;
        font-weight: normal;
      }
      

      Is present in your site's CSS, looks like it's coming from a compiled CSS file from within your application. Perhaps from a plugin. Changing the name of the "menu" class you are using should resolve the issue.

      Visual for you - http://i.imgur.com/d533SQD.png

    提交回复
    热议问题