How can I remove the three points next to the mega menus for the desktop?
You can remove it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
.sh-nav li.menu-item-has-children > a:after,
.sh-nav li.menu-item li.menu-item-has-children > a:after {
display: none;
}
Men’s icons do not appear in the mobiles. How can I solve this?
Please use below custom CSS code to resolve it.
.sh-nav li.menu-item-has-children > a:after,
.sh-nav li.menu-item li.menu-item-has-children > a:after {
display: none;
}
.sh-nav-mobile li.menu-item > a.fa:before {
font-family: 'FontAwesome';
padding-right: 8px;
}