Shopify themes, liquid, logos, and UX
I have products from different vendors in my store and I want people to be able to see who each product is from. When I activate this feature the vendors names aren't centered and it looks bad. How do I fix this? Also, how do I make the font bold? I'm using the debut theme.
Solved! Go to the solution
This is an accepted solution.
Add this code to your theme.liquid file before </head> tag
<style>
.grid-view-item__vendor { text-align: center; }
</style>
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
@olliedodge - add this css to the very end of your theme.scss file and check
.grid-view-item__vendor {text-align: center;}
I can't find where theme.scss file is
Hi @olliedodge
Open your Online store > Themes > Edit code > theme.scss.liquid, add this code at the bottom and save
.grid-view-item__vendor { text-align: center; }
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
I can't find where it says theme.scss.liquid. I so see something that just says "theme"
This is an accepted solution.
Add this code to your theme.liquid file before </head> tag
<style>
.grid-view-item__vendor { text-align: center; }
</style>
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Thank you that worked! Is there a way to make the font bold?
Please update code to this
<style>
.grid-view-item__vendor { text-align: center; font-weight: 700 !important; }
</style>
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
thank worked too! thank you guys so much for your help!
Welcome, @olliedodge
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
One more thing, is there a way to shut off the vendor display for all the other collections besides sound packs?
You can try to add this code to your theme.liquid file before </head> tag
{%- if collection.handle == "sound-packs" -%}
.grid-view-item__vendor { display: block !important; }
{%- else -%}
.grid-view-item .grid-view-item__vendor { display: none; }
{%- endif -%}
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Thanks for the reply. I tried that but it didnt seem to do anything. I noticed there are a few different places in the code that start with the <head> tag.
Is there a specific one that I should put it in front of?
Please update code and put it right above </head>
<style>
{%- if collection.handle == "sound-packs" -%}
.grid-view-item__vendor { display: block !important; }
{%- else -%}
.grid-view-item .grid-view-item__vendor { display: none; }
{%- endif -%}
</style>
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
that worked! Last questions I swear...How do I get the vendors to display on the "featured tapes" page as well? I just want the vendors to be shown on the "sound packs" and "featured tapes" page but not the "PO Cases" page
Hi, please add this code below <style> tag
.grid-view-item .grid-view-item__vendor { display: block !important; }
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
This code brought it back to displaying the vendors on the ''PO Cases" collection page.
Please update this code
<style>
{%- if collection.handle == "sound-packs" -%}
.grid-view-item__vendor { display: block !important; }
{%- else -%}
.grid-view-item .grid-view-item__vendor { display: none; }
{%- endif -%}
</style>
To this one
{%- if collection.handle == "sound-packs" or collection.handle == "featured-beat-tapes" -%}
.grid-view-item__vendor { display: block !important; }
{%- else -%}
.grid-view-item .grid-view-item__vendor { display: none; }
{%- endif -%}
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...Sign up now.
Awesome thank you! I added that code underneath the original one that centered the text and made it bold and it worked! I appreciate your help so much!
Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025