• Resolved mato0

    (@mato0)


    Hello, I have on site custom menu placed vertically on left side of page. I want to change dots in front of every link to dash and also delete dots in main categories. Is there way how to do it?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Theme Author oceanwp

    (@oceanwp)

    Hello, add this css code in the custom css section of the customizer:

    .elementor-widget-wp-widget-nav_menu ul {
        list-style: none;
    }
    .elementor-widget-wp-widget-nav_menu ul ul {
        margin-left: 10px;
    }
    .elementor-widget-wp-widget-nav_menu ul ul li a:before {
        content: '-';
        margin-right: 6px;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Change dot to dash in custom sidebar menu’ is closed to new replies.