Hey all, I posted this recently but couldn’t find a proper solution so I am going to try again.
So essentially, I would like to move my navigation bar to be placed below my logo. I inserted two images above, one is how it looks currently and the second is the look I am trying to achieve.
Does anyone know how this would be possible in code?
www.deranged-shop.com - minimal theme
Hi @donniederanged
The url is incorrect, please check and update your store url, then I can guide you make that
Hi @donniederanged
You can try follow this path:
Themes => edit code => asset => theme.scss.liquid
and add this code to bottom of the file theme.scss.liquid
@media(max-width: 767px){
#shopify-section-header {
display: flex;
flex-direction: column-reverse;
margin-bottom: 0 !important;
}
.site-header {
padding: 0!Important;
}
}
That didn’t update anything
@donniederanged Have you added the code?
I didn’t see it.
Hi @donniederanged ,
So try to add this code befoer “” tag in Store Online > Themes > Actions > Edite Code > theme.liquid file
@media(max-width: 767px){
#shopify-section-header {
display: flex;
flex-direction: column-reverse;
margin-bottom: 0 !important;
}
.site-header {
padding: 0!Important;
}
}