My rich text sections look extremely narrow in the mobile version, is there any way to code them to be wider specifically in the mobile version? Also, for context I am currently using the code shown in the ss below for my rich text sections:
If you need further assistance, please let me know. If you found my help useful, consider liking this message and marking it as the solution.
Thank You
K.k
Thanks! This worked, but only for the rich text box on the home page. There are a few more rich text boxes with no additional code (for these rich text boxes, i did not apply the code which i had pasted a screenshot of in my original post), and the code you sent me is not working for those rich text boxes (example- one rich text box on the about us page, faq page). what should i do for that?
Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.
Hello! @Tinctoria Please follow these steps to add this CSS code:
Go to your Online Store
Click on “Themes”
Select “Edit code”
Open your CSS file. If you have a custom CSS file, open that instead.
If you can’t find your custom CSS file, open “base.css”
Add the following code at the end of the file.
@media only screen and (min-width: 767px){
body .rich-text-content .content-heading {
font-size: 26px;
}
body .rich-text-description p {
font-size: 13px;
}
}