Change margin between product name and price

Does anybody know how to get the price closer to the product name?

Is it possible to change “€” to “EUR” for all my products on my website?

Thanks

URL: https://excitarestudios.myshopify.com/products/flower-ring-silver

1 Like

Hi @JoaquinExcitare

TRy this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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:
.product__title {
    margin-bottom: 0;
}

div#price-template--24072881209669__main {
    margin-top: 0;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

This one does not work @Made4uo-Ribe

Try this again. replace the code with this.

.product__title {
    margin-bottom: 0 !important;
}

div#price-template--24072881209669__main {
    margin-top: 0 !important;
}

And Save.

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!