Can someone help me with these issues I am facing on my website?
- Why does my CSS reset after using certain code?
- How can I make products show in the middle on mobile, other than on the homepage?
Website URL : (www.thevapeboys.co.uk)
I have a WordPress
website with WooCommerce
installed. To make it more mobile-friendly, I installed a plugin called WPtouch
. I added specific CSS values to enhance the mobile experience.
This CSS script only activates when accessed from a mobile device. However, my issue is with a carousel on the website that lacks arrow indicators. I tried adding the following code to the CSS:
.owl-nav .owl-next::before {
content: ">";
}
.owl-nav div::before {
content: "<";
}
While it appeared as expected in Firebug, upon implementing the code, it resets all the previous CSS values. Is there a way to resolve this without affecting the existing CSS?
Furthermore, when visiting the shop page, the products and text are aligned to the left. How can I center them for a better mobile user experience?