How do i increase the size of the caption in rich text section?
Hi @Studioiris
If you share your store URL and password with me, I will check and provide you with the solution.
Thank you so much! https://3e7bc0-ba.myshopify.com/pages/about code Morris
Hi @Studioiris
- Go to Online Store → Theme → Edit code.
- Find the file assets/base.css and paste the code below at the bottom of the file.
.rich-text__blocks * {
font-size: 18px;
}
Hi @Studioiris ,
I have reviewed your requirement, you just need to edit css script and the issue will be resolved. You can follow my instructions!
Step 1: Go to Admin → Online store → Theme > Edit code:
Step 2: Search for the file base.css. And add this code snippet to the end of the file.
.rich-text__blocks.center {
max-width: fit-content !important;
font-size: larger;
}
In this step, you change the max-width for increase the size of the caption in rich text section.
In my example, I choose: max-width: fit-content. You can change to “10rem” or “15rem” as you want.
Step 3: Save your code and reload this page.
=>> The result:
I hope these instructions will help you. If they are helpful, please give us likes and mark as the solution.
Have a nice day sir!
HI @Studioiris
check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.rich-text__caption.caption-with-letter-spacing.caption-with-letter-spacing--large {
font-size: 4rem;
}
And save.
Result: