Currently the cart slides into the screen when something is added to the cart.
I would like to remove this feature if possible and simply keep the cart in the header above the menu permanently, is this possible?
Hey flypromotion!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.cart_dropdown { right: -2px; }
Cheers!
Yigit
Hi Yigit,
Thankyou for your help the cart is now displayed when there are no items in the cart.
Is there anyway to put the cart directly into the header because a client wants it above the menu if possible?
Also I’ve noticed it dissapears on mobile format, do you know of any coding to display the cart when on mobile?
Thanks again
Hey!
Try adding this to your custom CSS.
.responsive .cart_dropdown {
display: block !important;
}
If your going to display it on mobiles then it would be best to set it’s position by percentage.
.cart_dropdown {
top: 15% !important;
right: 15% !important;
}
Regards,
Elliott