Shopify themes, liquid, logos, and UX
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!
Solved! Go to the solution
This is an accepted solution.
Sure, Let's remove help me "flex-direction: row-reverse !important;" in my code
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
This is an accepted solution.
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 as a solution. Thank you 😍😍
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
This is an accepted solution.
@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 as a solution. Thank you 😍😍
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
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 as a solution. Thank you 😍
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
This worked but can I with the price to the right side?
This is an accepted solution.
Sure, Let's remove help me "flex-direction: row-reverse !important;" in my code
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
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.
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
I need the title fully to the left and the price fully to the right like on this picture
This is an accepted solution.
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 as a solution. Thank you 😍😍
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
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:
This is an accepted solution.
@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 as a solution. Thank you 😍😍
Sale banner, pop ups: Customize your sale banner, pop-ups and create countdown bar to boost conversion rate.
Simicart: Transform your Shopify store into a stunning and fully functional mobile app with just a few simple steps.
Product Labels & Badges: Get more sales with striking labels, badges, and banners from our 10,000+ available templates.
BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
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!
Starting a B2B store is a big undertaking that requires careful planning and execution. W...
By JasonH Sep 23, 2024By investing 30 minutes of your time, you can unlock the potential for increased sales,...
By Jacqui Sep 11, 2024We appreciate the diverse ways you participate in and engage with the Shopify Communi...
By JasonH Sep 9, 2024