Want Text From Left To Right of this text with icons section
URL: https://mybadger.in/
PASS: Badger
A user seeks to change text alignment from right-to-left to left-to-right in a Shopify theme’s “text with icons” section.
Two solutions provided:
Quick CSS fix - Add CSS code to theme.css file targeting mobile view (max-width: 767px) with text-align: left !important
Detailed step-by-step approach:
Key notes:
Status: Unresolved - waiting for user feedback on whether solutions work
Add this code in your theme.css file:
@media (max-width: 767px) {
.text-with-icons__text-wrapper .prose p {
text-align: left !important;
}
}
Result:
@Emiway Please find the below steps to make display text from left to right alignment. Let us know whether it is helpful for you.
@media screen and (max-width: 698px) {
.text-with-icons .text-with-icons__item .text-with-icons__text-wrapper .prose {
text-align: left !important;
}
}
Note: The code provided above is for mobile view. If you need the text change also for desktop, remove the media query line and its closing brace.
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.