How can i align the text from “natural…radiance” also in the middle like the title. Only for mobile.
URL is www.lunalucente.com
A user seeks to center-align descriptive text (“natural…radiance”) on mobile devices to match the title alignment on their Shopify store.
Proposed Solutions:
Multiple developers provided CSS code snippets targeting the .m-richtext__description class with text-align: center for mobile screens (max-width: 767px or 768px).
Implementation Steps:
theme.liquid (before </body> tag), theme.css/theme.scss files, or before </head> tagStatus:
Multiple working solutions provided with visual confirmation. The discussion appears resolved, pending the user’s implementation and confirmation.
How can i align the text from “natural…radiance” also in the middle like the title. Only for mobile.
URL is www.lunalucente.com
Hello @lunalucenteskin
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
Hi @lunalucenteskin , I hope you are doing well,
@media only screen and (max-width: 768px) {
.m-richtext .m-richtext__description.rte {
text-align: center !important;
}
}
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hi @lunalucenteskin ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
Here is result:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()
Hi @lunalucenteskin ,
Could you please add the below CSS in the theme stylesheet.
#m-slider-template--22392517198168__slider_FUXE9H .m-slide__content {
margin: 0 auto;
text-align: center;
}
#m-slider-template--22392517198168__slider_FUXE9H .m-slide__button {
display: flex;
justify-content: center;
}
Result:-
I hope this helps! If it does, please like it and mark it as a solution!
If you need further assistance, feel free to reach out!
Regards,
Sweans