Hello, I would like to align the text to left for the following pages:
https://imabyssal.com/pages/materials-care
https://imabyssal.com/pages/returns-refunds
could you please help me?
Hello, I would like to align the text to left for the following pages:
https://imabyssal.com/pages/materials-care
https://imabyssal.com/pages/returns-refunds
could you please help me?
alternatively, you can add code to theme.css
.home-message-content {
text-align: left;
}
This will throughout your site. My decision is not quite right
@Abyssal - there is section class named - .home-message , you can add this css to the very end of your theme.css file and check, it will change content on all pages where this class is applied, or you want for these 2 pages only?
.home-message {text-align: left;}
Hello Suyash,
Thank you for the quick answer. I want to modify just those two pages, not all .home-message class. Is there any possibility to apply a custom .class to that section ID?
@Abyssal - please add this css
.template-suffix-materials-care .home-message {text-align: left;}
.template-suffix-delivery-returns .home-message {text-align: left;}
Suyash thank you a lot, that worked. If you don’t mind I would like to ask you for a little tweak. The code provided changes both, the h2 and p text, is there any possibility to modify ONLY the paragraph text?
Suyash thank you a lot, that worked. If you don’t mind I would like to ask you for a little tweak. The code provided changes both, the h2 and p text, is there any possibility to modify ONLY the paragraph text? Thanks!
Please try this
≠======================
.template-suffix-materials-care .home-message p{text-align: left;}
.template-suffix-delivery-returns .home-message p{text-align: left;}
=======================
worked! Thanks ![]()
@Abyssal - welcome, do let me know if you need anything later.
Can you help me with this?