Hi after upgrading to 3.2 i have a shopping cart icon hidding my logo,
Is there any simple way to remove this?
Hi Jamie A!
Add this to Quick CSS or custom.css
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.cart_dropdown{
display: none;
}
}
Best regards,
Arvish
Perfect thanks – Resolved!