Shopping cart icon does not show on mobile display but it shows on desktop, theme Capital

Greetings,

The shopping cart icon displays perfectly on a desktop version but it is not present on the mobile version at all.

My webshop theme is Capital. I would greatly appreciate some help.

The webshop is: https://www.babiesbybabes.com/

Thank you in advance.

Hi @Astrid98 ,

Go to Assets > custom-style.css and paste this at the bottom of the file:

@media (max-width: 720px) {
	.main-navigation-wrapper {
		display: none !important;
	}
	.wg-drop.country-selector {
		top: 0 !important;
	}
}

Hope it helps!

1 Like

Hello, your solution helped but bow unfortunately I have a problem with the header dropdown menu on the mobile display. It shows no options for the shop.

Hi @Astrid98 ,

Please change ‘.main-navigation-wrapper’ => ‘.main-navigation-wrapper.main-navigation-wrapper–center’

it will display fine

1 Like

Thank you very much, it worked perfectly. :blush:

1 Like