Hi,
How can I control the paragraph spacing around Heading tags? Example below, I want to be able to reduce the spacing after the H2 and H3 tags so the page style looks better.
Thanks in advance
Erwan
Hi @Erwan3
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:
.mb-15 h2, .mb-15 h3 {
margin-bottom: 15px !important;
}
And Save.
Result:
Note: I just copy the same margin size on the h1.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Hi,
It worked without any problem. It is so simple when you know how to do it
. Thanks
Erwan