Hi,
I’m using the Dawn 2.0 theme.
https://wortheattt.myshopify.com/
I have an image with text section, and I want its text area to be wider in the mobile platform than what it is now:
How can I change it?
Thanks
Hi,
I’m using the Dawn 2.0 theme.
https://wortheattt.myshopify.com/
I have an image with text section, and I want its text area to be wider in the mobile platform than what it is now:
How can I change it?
Thanks
Hi @Ben1000 ,
You can follow the instruction below:
.image-with-text__content {
padding: 0 !important;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
I want this solution to be only on mobile (not desktop)
Hi @Ben1000 ,
You can follow the instruction below:
#shopify-section-template--14625265319989__16459638514e39b28f .image-with-text__content {
padding: 0 !important;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
How can I make it only on mobile? (not desktop platform)
Hi @Ben1000 ,
You try below code in component-image-with-text.css file:
@media (max-width: 767px) {
#shopify-section-template--14625265319989__16459638514e39b28f .image-with-text__content {
padding: 0 !important;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Thanks @AvadaCommerce ,
How do I make it work for all ‘image with text’ sections on mobile?
Hi @Ben1000 ,
You try below code in component-image-with-text.css file:
@media (max-width: 767px) {
.image-with-text__content {
padding: 0 !important;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Hi @Ben1000 ,
You try below code in section-rich-text.css file:
@media (max-width: 767px) {
.rich-text--full-width .rich-text__blocks {
width: 100% !important;
padding: 0 1.5rem !important;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Hi @AvadaCommerce ,
Thank you, it works!