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;
}
Learn how to add custom CSS to your site.