I only have one product in my featured collection as of right now, and I wanted to know how to center my product since I only have one product featured. the site is www.seraph.pw
bump
use this s-eraph.myshopify.com
Hi @fedsmf ,
You can follow the instruction below:
- Go to Online Store->Theme->Edit code
- Asset->/theme.css->paste below code at the bottom of the file:
#shopify-section-collection .grid__item {
float: none !important;
margin: 0 auto !important;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
perfect, is there a way to hide product titles on my home page ?
Hi @fedsmf ,
You try below code in /theme.css file:
#shopify-section-collection .product-card__title {
display: none !important;
}
Hope It can help you. ^^
Thanks a lot, how do I remove the price?
also could you assist me with rearranging the product page?
I want it aligned like this, with the product above the description
If you don’t want to help me with all this right now, could you just tell me the code to hide the price
Hi @fedsmf ,
This is code change Product. You try below code in /theme.css file:
.product-single {
display: block;
max-width: 500px;
margin: 0 auto;
}
.product-single .grid__item {
width: 100% !important;
}
Hope it can help you. ^^
Do you want to remove the price on the homepage or the product page?
home page, just like the title. Thank you sm for your help btw
Hi @fedsmf
You try below code in /theme.css file:
#shopify-section-collection .price--listing {
display: none !important;
}
It’s very pleasure to help you. If you need more help, you can contact me. If I can, I will help you.
Best regards. ^^
Can you update this code for theme.liquid ? Doesnt work on ccs anymore.

