Hi All,
im looking to move my collection title and breadcrumbs to the left and have the title above the breadcrumbs. My site is https://luxurymrkt.com/collections/menswear
id like it align like this pic below
thank you
Goal: Left‑align the collection title and breadcrumbs in the Shopify Impulse theme, with the title displayed above the breadcrumbs, primarily on mobile.
Proposed changes:
Results so far:
Notes:
Current status: Partially resolved. The solution works on some collection pages (with images) but not on those without images. Further investigation is needed to account for markup/layout differences between image and non‑image collection headers. The thread remains open.
Hi All,
im looking to move my collection title and breadcrumbs to the left and have the title above the breadcrumbs. My site is https://luxurymrkt.com/collections/menswear
id like it align like this pic below
thank you
Please add the following CSS code assets/theme.css bottom of the file.
@media screen and (max-width: 749px){
#CollectionHeaderSection .section-header__shadow {display: block !important;}
}
Thanks!
Please add the following CSS code to your assets/theme.css bottom of the file.
@media screen and (max-width: 749px){
#CollectionHeaderSection .section-header__shadow {display: block;}
#CollectionHeaderSection .section-header__shadow .section-header__title {text-align: left !important;}
}
Thanks!