How can I make a price information center on the website? As seen in the screenshot, the price appears below the product on the left.
https://texas-hand-gun-grip.myshopify.com/ << password is : 123
Theme : Motion
How can I make a price information center on the website? As seen in the screenshot, the price appears below the product on the left.
https://texas-hand-gun-grip.myshopify.com/ << password is : 123
Theme : Motion
Hello Atakanokums!
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file theme.scss
Step 3: Paste the below code at bottom of the file → Save
.grid__item .grid-product__content .grid-product__meta .grid-product__title {margin: 0 auto;}
.grid__item .grid-product__content .grid-product__meta .grid-product__price {text-align: center;}
Hello @atakanokums
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.
.grid-product__price {
text-align: center;
}
.grid-product__title {
width: 100% !important;
}
Hi @atakanokums ,
You can use the code below.
.grid-product__price {
text-align: center;
}