How do I turn on images of the collections on the mobile layout of the menus?
Attached is a picture of the desktop layout with the images of the collections on each sub-menu item line on the left. However, when I check the mobile layout there’s no icon. Can anyone point me how to reveal the image of the collection on the mobile layout?
Copy and paste this code on Theme settings > Custom CSS section
@media only screen and (max-width: 1000px) {
#header-outer #nav>ul>li>ul ul li a>.img {
position: static;
width: auto !important;
height: 29px !important;
margin-top: 0;
}
#root #header-outer #nav>ul>li>ul ul li a .img img {
margin-left: 0;
display: block;
transform: none;
margin-right: 0;
}
#header-outer #nav>ul>li>ul ul li a {
display: flex;
}
}