Make Collection Hero Description Full Width

Solved

Make Collection Hero Description Full Width

webmasterxclus
Tourist
9 0 2

I'm trying to make the Collection Hero Description on the Collection pages full size so it's not offset to the left...i've centered the text but i need it to go across the full container, can someone help please....here is the screenshot of the issue

 

Screenshot 2024-03-04 at 5.44.28 PM.png

 

 

Accepted Solutions (2)

Dan-From-Ryviu
Shopify Partner
11288 2212 2381

This is an accepted solution.

Hi @webmasterxclus 

Dan here from Ryviu: Product Reviews & QA app. 

 

You can do that by adding this code to theme.liquid file after <head> 

<style>
.collection-hero__description { max-width: 100% !important; }
</style>

 

- Found this helpful? Hit "Like" and "Accept as Solution"! - Feeling generous. Buy me coffee!
- 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 - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

View solution in original post

Dan-From-Ryviu
Shopify Partner
11288 2212 2381

This is an accepted solution.

I added incorrect code, please use this.

<style>
.collection-hero__description { max-width: 100% !important; }
.card__heading, 
.card-information {
text-align: center !important;
}
</style>

- Found this helpful? Hit "Like" and "Accept as Solution"! - Feeling generous. Buy me coffee!
- 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 - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

View solution in original post

Replies 9 (9)

Dan-From-Ryviu
Shopify Partner
11288 2212 2381

This is an accepted solution.

Hi @webmasterxclus 

Dan here from Ryviu: Product Reviews & QA app. 

 

You can do that by adding this code to theme.liquid file after <head> 

<style>
.collection-hero__description { max-width: 100% !important; }
</style>

 

- Found this helpful? Hit "Like" and "Accept as Solution"! - Feeling generous. Buy me coffee!
- 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 - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

webmasterxclus
Tourist
9 0 2

Thank alot, that worked! Also can you tell me how to center the product name and price under the images on same page...here is screenshot

 

Screenshot 2024-03-04 at 8.40.57 PM.png

Dan-From-Ryviu
Shopify Partner
11288 2212 2381

Hi @webmasterxclus 

You can do that by updating the previous code to this. 

<style>
.collection-hero__description { max-width: 100% !important; }
.card__heading, 
.card-information {
text-align: center;
}
</style>

 

- Found this helpful? Hit "Like" and "Accept as Solution"! - Feeling generous. Buy me coffee!
- 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 - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

webmasterxclus
Tourist
9 0 2

That worked for the description but not the price 😕

Screenshot 2024-03-04 at 9.38.01 PM.png

Dan-From-Ryviu
Shopify Partner
11288 2212 2381

Code updated 

<style>
.collection-hero__description { max-width: 100% !important; }
.card__heading, 
.card-information {
text-align: center;
}
</style>

- Found this helpful? Hit "Like" and "Accept as Solution"! - Feeling generous. Buy me coffee!
- 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 - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

webmasterxclus
Tourist
9 0 2

the updated code did not work to center price, it looks to be the same code as the first

webmasterxclus
Tourist
9 0 2

can you send me correct code to center the price please

Dan-From-Ryviu
Shopify Partner
11288 2212 2381

This is an accepted solution.

I added incorrect code, please use this.

<style>
.collection-hero__description { max-width: 100% !important; }
.card__heading, 
.card-information {
text-align: center !important;
}
</style>

- Found this helpful? Hit "Like" and "Accept as Solution"! - Feeling generous. Buy me coffee!
- 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 - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

webmasterxclus
Tourist
9 0 2

Thanks again! That worked great