Skip to content

Snippet: Change Mobile Menu Dropdown Arrows to Plus Icon

body .wpex-open-submenu span {
    font-family: "Arial";
    font-size: 16px;
}
body .wpex-open-submenu span::before {
    content: "\002B" !important;
     font-family: "Arial"
}

/* Show minus icon when active */
body .wpex-open-submenu[aria-expanded="true"] span::before {
    content: "\2212" !important;
}
Back To Top