Moving product description text up slightly

Hello!

Does anyone know how to move the product description text up slightly towards my image? I feel like its a big gap in between them. I only want to make changes on PC/Desktop, since on mobile it looks great.

Here is example: https://gyazo.com/4042cf47aef194b37624f50661ed10ae

I would like to my site URL to be anonymous so please let me know if you can help and I can PM you the site URL. Thank you so much for your time and help!

1 Like

You have PM now!

1 Like

Hi @manoman

Would you mind to share your store URL? Thanks!

1 Like

You have Pm with url! Thanks!

Helped me great in Pms. Thanks!

Thanks for the info, 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:

.container.vertical-breather {
    padding-top: 0px !important;
}

@media screen and (min-width: 1000px) {
    .product:not(.product--featured) {
        margin-bottom: 60px !important;
    }
}

And Save.

If not enough just lesser the margin-bottom.

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