How can I eliminate unwanted padding from my website images and footer?

Hey,

I would like to remove the padding beneath the first image banner and above the rich text.

There’s also padding at the bottom above the footer menu I would like to remove. Any tips?

https://canimalo.co/

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
section#shopify-section-template--15952205578425__rich_text {
margin-top: 0;
}

Screenshot :- https://prnt.sc/1k9B8s2KOlNw

@SerBeef

Add the following CSS code to your assets/base.css bottom of the file.

#shopify-section-template--15952205578425__rich_text{margin-top: 0px !important;}
.footer {margin-top: 0px !important;}

Thanks!

Thank you friend! This worked