Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1363149

    Hi, Im working on a client site,
    one of menus has a dot infront of each menu item, how do I delete the dot.

    Links set as private content.

    Alan ;)

    #1363234

    Hey Alan,

    Please try the following in Quick CSS under Enfold->General Styling:

    #top .widget_nav_menu ul ul li:before {
      display: none; 
    }

    Best regards,
    Rikard

    #1363451

    Hey Rikard
    Great that did it ;)

    Just wondering, is it possible to set a kind of note/header in the Quick Css, to tell me what the code does. Later on I can’t remember what the different codes are doing ;)

    Enjoy your day…

    #1363458

    Hi Alan,

    You can add comments in CSS using /* to open and */ to close. So your code would look like following

    
    /* To remove dots in menus */
    #top .widget_nav_menu ul ul li:before {
      display: none; 
    }
    

    Best regards,
    Yigit

    #1363467

    Great thank you, all done ;)

    #1363469

    Hi,

    Glad we could help!
    Let us know if you have any other questions and enjoy the rest of your day :)

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘How to remove dot in menus’ is closed to new replies.