I want to align the breadcrumbs

Solved
swayurindia
Excursionist
113 0 7

I want to align the breadcrumbs

breadcrumbs.JPG

Accepted Solution (1)
Dan-From-Ryviu
Shopify Partner
5570 1021 1053

This is an accepted solution.

Hi @swayurindia 

Please add this code at the bottom of your base.css file in Online store > Themes > Edit code > Assets 

.breadcrumb {
    margin: 0 auto !important;
    max-width: var(--page-width);
}

Screenshot 2023-10-06 at 13.44.31.png

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

View solution in original post

Replies 4 (4)
Dan-From-Ryviu
Shopify Partner
5570 1021 1053

This is an accepted solution.

Hi @swayurindia 

Please add this code at the bottom of your base.css file in Online store > Themes > Edit code > Assets 

.breadcrumb {
    margin: 0 auto !important;
    max-width: var(--page-width);
}

Screenshot 2023-10-06 at 13.44.31.png

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

swayurindia
Excursionist
113 0 7

Hello I am also requiring solution for one more problem

 

I want to hide sold out products from the homepage (not remove from the search engine index)

Dan-From-Ryviu
Shopify Partner
5570 1021 1053

Hi @swayurindia 

You can try to add this code to Custom CSS of product list section on hompage and check if it is working

.card-wrapper:has(button[disabled]) { display: none !important; }

 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

swayurindia
Excursionist
113 0 7

not solved.