Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
i need to put the grey bar (the one under the red bar) under the black header of my site. i think i have to separate it from the header first as they are joined, can anyone help me? thanks
website url: https://juliettemarseille.fr/
i need to put it under the black header so: red bar-black header-gray bar
Hey @matthewdropship,
This need to interchange the coding of the header and gray bar in the theme file.
Would you like to share the store collab code in the p/m so that I can interchange the current code.
Thanks
Hi @matthewdropship Here is the solution with custom css code.
Please follow the steps.
.shopify-section-group-header-group div[data-section-type="header"]{
display: flex;
flex-direction: column-reverse;
}
Thanks!
Hey! @matthewdropship,
Could you kindly share your store URL and password (if it’s password-protected) so I can review it and provide you with an update?
.section-sections--25548504695049__ss_announcement_bar_slider_Bp9UNP.announcement-sections--25548504695049__ss_announcement_bar_slider_Bp9UNP {
position: relative !important;
top: 131px;
z-index: 9999 !important;
}
.header-sticky-wrapper {
top: -49px !important;
}
@media(max-width: 768px){
.section-sections--25548504695049__ss_announcement_bar_slider_Bp9UNP.announcement-sections--25548504695049__ss_announcement_bar_slider_Bp9UNP {
position: relative !important;
top: 92px !important;
z-index: 9999 !important;
}
}