If you're not comfortable making code changes to your theme, we highly recommend working with one of our partners who specialize in theme customizations. Our support is limited to this guide.
In the mobile menu, the first product image is displayed from the top-level menu item link to create some visual appeal.
If you want to remove this, you can do so by adding some CSS code. In your Shopify admin, navigate to Online store > Themes and click Customize on the theme you want to edit.
Go to Theme settings > Custom CSS and add this code:
.slide-nav__image+span {
padding-left: 0px;
}
.slide-nav__image img {
display: none;
}Don't forget to click Save to confirm the changes.