How do i decrease the space shown in the image?

https://charmente.com/products/long-sleeve-jumpsuit

p.product__text.inline-richtext {
margin-top: 0;
}

.shopify-block.shopify-app-block.ali-widget-star-rating {
margin-bottom: 0;
}

You can adjust and use the following css:

div#shopify-block-15e8f20f-6797-4c24-a5f2-cb7c0e6b97f2 {
    margin-bottom: 30px;
}

did not work, where am i supposed to paste this?

did not work where do i paste this

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:

div#shopify-block-15e8f20f-6797-4c24-a5f2-cb7c0e6b97f2 {
    margin-bottom: 10px;
}

Hi @Simon159

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Richard | PageFly

hey, that moved the star rating up as well which is not what i want to do. all i want is to move the text a little closer to the star rating. Is there any way to just do that? Thank you!

Use this css:

div#shopify-block-15e8f20f-6797-4c24-a5f2-cb7c0e6b97f2 {
    margin-bottom: 10px;
}

did not work either