skip to Main Content

I have one problem. I can’t hide ::marker for safari.

#categories-4.widget_categories::marker { content: '' !important; }

It works fine for example for chrome or microsoft edge. Thanks for any help.

3

Answers


  1. Try this:

    ::-webkit-details-marker {   display:none; }
    
    Login or Signup to reply.
  2. I had to use both list-style-type: none as well as padding: 0 for Chrome & Safari on MacOS Ventura.

    ul {
      list-style-type: none;
      padding: 0;
    }
    
    Login or Signup to reply.
  3. For summary and ul:

    ul,
    summary {
        list-style-type: none;
    }
    summary::marker {
        color:#fff;
        z-index:-5;
    } 
    

    https://www.w3schools.com/cssref/tryit.php?filename=trycss_list-style-type_ex


    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search