Hi so my header bar is half cut off on my mobile version of my site
URL: https://www.billieandco.com.au
picture attatched
Hi so my header bar is half cut off on my mobile version of my site
URL: https://www.billieandco.com.au
picture attatched
sorry for that issue
can you please check mobile theme setting maybe allow this stick issue or top 2 text bar
Please add the following code at the bottom of your assets/style.scss.liquid file.
@media (max-width: 577px){
.brand-logo { padding-top: 85px!important; }
}
Hope this works.
Thanks!
Hey mate that works perfect what else can i add for the header menu to do the same thing
Remove this previous css code
@media (max-width: 577px){
.brand-logo { padding-top: 85px!important; }
}
Add this new css code
@media (max-width: 577px){
.brand-logo {padding-top: 35px!important;}
.main-menu .menu-right {padding-top: 85px !important;}
}
Thanks!