How can I adjust the size of top and bottom margins?

Impulse Theme

Rich Text

I would like to control individual rich text components so will need code to use in the custom css are of the template builder.

I want to increase/decrease margins/padding for top and bottom?

Hello There,

Please share your store URL and screenshot.
So that I will check and let you know the exact solution here.

Hey @bonnielauren

Could you please provide your Store URL and, if applicable, the Password too? Your cooperation is greatly appreciated!

Best Regards,
Moeed

54f4ca.myshopify.com

Password: aotwep323

54f4ca.myshopify.com

Password: aotwep323

Hi @bonnielauren ,

You can try this way:

Step 1:

Step 2: Find base.css, base.scss, theme.css, theme.scss files (depending on theme)

![view - 2023-09-07T094951.836.png|1416x808](upload://4auO791Gt2p6aQRZMn7eYtp0ufa.png)

- Find the appropriate element selector to add css. If you don’t know selectors then you can learn more here https://www.w3schools.com/cssref/css_selectors.php . For example, here I found the β€œappear-delay” selector and I will css it:

Add this code to the end of the *.css/scss file you just found:

.appear-delay{
  margin-top: 10px;
  margin-bottom: 10px;

Hope it helps @bonnielauren !