Thanks in advance!
I am looking to minimize the space between the heading and button label to be a little closer together. I would like to adjust the spacing between the words to my liking.
Thanks in advance!
I am looking to minimize the space between the heading and button label to be a little closer together. I would like to adjust the spacing between the words to my liking.
Hi @MMast
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__text.rte.scroll-trigger.animate--slide-in {
margin: 0px;
}
.rich-text__buttons.scroll-trigger.animate--slide-in {
margin-top: 10px;
}
And save.
Result:
Note: You can remove another code of margin if its too close.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!