This topic has 6 replies, 3 voices, and was last updated 5 years, 5 months ago ago by Rose Tyler
How can I add a shopping cart to the mobile version of my website? At the moment there is no shopping cart in the mobile version.
Hello,
Add the following code to child theme style.css
@media (max-width: 480px){
.top-bar {
display: flex;
}
.header-type-3 .top-bar .search, .header-type-3 .top-bar .my-account-link {
display: none !important;
}
.header-type-3 .top-bar .cart-summ{
margin: 5px 0;
}
}
Regards
I’ve added the code but unfortunately I don’t see any difference in the mobile version yet.
Please change the code to http://prntscr.com/nxz3k6
!important;
Regards
it worked thank you !
You’re welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up