Hi there, I’m wondering how I can increase the space between my search bar and announcement bar as my announcement bar covers the search bar on mobile view. My store URL is: https://madeinthestates.com.au
this is how I’d like it to sit:
Thanks in advance!
Hi,
Add this code to the bottom of theme.scss.css
@media screen and (max-width: 481px) {
.nav-bar .wrapper {
padding: 50px 0 0; }
}
1 Like
hii, @madeinthestates
Paste this code on top of the theme.scss file.
@media only screen and (max-width: 768px) {
nav#navBar {
position: relative;
}
}
Thank You.
1 Like
@Nick_Marketing - thank you! this worked 
@Zworthkey - thank you!