Hi!
I’ve been struggling with removing a white border that appears on my mobile product page. It only happens in mobile.
Can someone help me with this please
Here’s the link https://gomicare.es/products/beauty-bloom?selling_plan=689965924675&variant=48021690515779
Thanks
Hey @JesusGomicare ,
This took way longer than expected. There is a pesky little h1 with width of 120% instead of 100 which made the site have that white space to the right.
Here is the fix!
Step 1: Go to Online Store > Theme > Edit code > find base.css file and add the following
.rich-text__heading.rte.inline-richtext.h1 {
width: 100% !important;
}
Thanks! That worked perfectly!