Reducing spacing for certain elements pipeline theme

Hi there, I would like to reduce the spacing below the title on this page, could someone please help me with the code?

https://yoonek.com.au/collections/everything-wedding

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.margin--medium {
padding-bottom: 15px;
}

Hi Zesta,

I have tried this but it didn’t work

Hey @Tony1992

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hello @Tony1992

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.margin--medium {
    padding-bottom: 0;
}

Hello @Tony1992

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.
If helpful then please Like and Accept Solution.

Thank you for that, further down the page, I want to reduce this space as well, could you help with this?

Hello @Tony1992

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.collection {
padding-bottom: 0;
}

Hello @Tony1992

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
.collection {
    padding-bottom: 0;
}
.collection__heading {
    padding-top: 0;
}