Hi, right now on our website the price sits below the item name (see www.jickie.co) , can you let me know how to have the price sit aligned on the right end side of the product image ? as per below:
Also i can’t find where to change the price tag color, right now its grey and i’d like it to be black.
thanks a bunch!
1 Like
Hi @carlajickie
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-2 {
display: flex;
flex-grow: 2;
}
.product-card__info.empty\:hidden {
display: flex;
}
.v-stack.justify-items-center.gap-1 {
display: flex;
flex-grow: 1;
justify-content: space-between;
}
price-list.price-list sale-price.text-subdued {
color: black;
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
hi thanks so much, however on mobile mode the price is cut, is there a way to get the price to go under the item name just for mobile, as below:
thanks !!