Move the sale tag next to price on Prestige theme

I would like to move the sale tag next to the price section, just like in this photo:

This is my webside: Rizador de pestanas (loveltienda.com)

Thank you so much for your help on advance :slightly_smiling_face:

Hi @JoakimTorres_1

is this only in the mobile screen? If it is 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:
@media only screen and (max-width: 699px){
    badge-list.badge-list {
    justify-content: end !important;
    margin-top: -40px;
    margin-right: 20px;
}
}

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