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>
- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
@olliedodge - can you please share thi page link?
@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; }
- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. 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>
- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. 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>
- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
thank worked too! thank you guys so much for your help!
Welcome, @olliedodge
- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. 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 -%}
- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. 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>
- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. 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; }
- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. 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 -%}
- Helpful? Like and Accept solution! Or Support me: Buy Coffees
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. 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!
As 2024 wraps up, the dropshipping landscape is already shifting towards 2025's trends....
By JasonH Nov 27, 2024Hey Community! It’s time to share some appreciation and celebrate what we have accomplis...
By JasonH Nov 14, 2024In today’s interview, we sat down with @BSS-Commerce to discuss practical strategies f...
By JasonH Nov 13, 2024