Blank space above product image on product page (padding is already lowest)

Hi! There is a blank space above my product image on all of my product pages and I can’t find a way of reducing it. I can’t reduce the top padding any further as it is already set to the lowest. I’ve attached a screenshot of what I mean.

If anyone knows of a fix for this I would be very grateful!

Here is a link to a product page from my website: https://nuvocollection.com/products/arizona-claw-in-jade-serenity

@Theo_Bee

@Theo_Bee

.product .swiper-wrapper .swiper-slide {
    padding: 0 !important;
}

if your issue is solved then please hot like and mark as solution

Hi @Theo_Bee

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:

.swiper-wrapper .swiper-slide {
    padding-top: 0px !important;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

That worked perfectly :slightly_smiling_face: Thank you for the very clear instructions as well!

@Theo_Bee :check_mark: :ok_hand: