How to change product title size in prestige theme

hi!

can I only change the product title size on my prestige them? and is it also possible to place the title on the left and the price on the right? below you can see the picture of the website now and how I would like it.

site: https://www.gallerychristian.com/

thanks!

Hi @christian_russo , Please insert this code to your file css:

.product-card__info .v-stack.justify-items-center.gap-1 {
    display: flex !important;
    flex-direction: row-reverse !important;
    align-items: center !important;
}

.product-card__info .product-title {
   font-size: 13px !important;
}

Here is result:

Hope this can help you
If our suggestions are useful, please let us know by giving it a like or marking it asa solution. Thank you :heart_eyes:

This worked but can I with the price to the right side?

Sure, Let’s remove help me “flex-direction: row-reverse !important;” in my code

Hi @christian_russo

Do you like to change the font size in all product title pages?

For changing the title and prcie. 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:

.v-stack.justify-items-center.gap-1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 100%;
}
.product-card__info {
    justify-items: unset!important;
}
.justify-items-center {
    justify-items: stretch !important;
}

a.product-title.h6, sale-price.h6.text-subdued {
    font-size: 16px;
}

And Save.

Result:

Note; i also change the font-size of the price so it will be uniform the title if you dont like just let me know.

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

Can I move the title to the left and the price to the right?

Hi @christian_russo , Can you kindly share the details of your problem (screenshot/ record) with us? We will check it and suggest you a solution if possible.

I need the title fully to the left and the price fully to the right like on this picture

Hi @christian_russo , Pls insert this code to your file css :

.container:has(.collection) {
    margin: 0 15px !important;
}

.product-card__info .v-stack.justify-items-center.gap-1 {
    gap: 45px !important;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it asa solution. Thank you :heart_eyes: :heart_eyes:

thanks this worked but is it also possible to only have this on computer and not on mobile? I would like to leave the price under the title on mobile so it’s like this:

@christian_russo , Pls insert this code to your file css :

@media only screen and (max-width: 767px) {
  .product-card .product-card__info .v-stack.justify-items-center.gap-1 {
        display: block !important;
  }
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it asa solution. Thank you :heart_eyes: :heart_eyes: