Shopify themes, liquid, logos, and UX
In my renza theme , some of the text exceeding it limits and crossing the side margin in mobile responsive, please refer the attached ss, can anyone help me to solve
Hey @Arjun26 ,
It looks like the text in the "Specifications" section is exceeding its container's boundaries, which is causing the scrollbar to appear. This issue can often be fixed by adjusting the CSS for that container to make it responsive and fit within mobile screens.
ry adding the following CSS to your theme's custom CSS file or directly in your theme's style file:
@media only screen and (max-width: 767px) {
.product-specifications { /* Replace .product-specifications with the actual class if different */
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
white-space: normal;
padding: 0 15px; /* Adjust the padding as needed */
}
}
This code will ensure the text doesn't overflow the container and will wrap properly on smaller screens. If the "Specifications" container has a different class, replace .product-specification with the appropriate class name.
If this doesn't fully resolve the issue, let me know, and we can try some other CSS adjustments.
If I was able to help you, please don't forget to Like and mark it as the Solution!
If you’re looking for expert help with customization or coding, I’d be delighted to support you. Please don’t hesitate to reach out via the email in my signature below—I’m here to help bring your vision to life!
Best Regard,
Rajat Sharma
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025