Hello guys my website is www.jhakhas.com need help in making menu in single line instead of multiple line how can we do that please help
Hi @Divyajain
You can add this snippet to solve your problem:
.site-header__mobile-nav {
z-index: 11;
position: relative;
background-color: #fceaea;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.site-header nav {
flex: 1 0 100%;
order: 1;
}
.site-header .site-header__icons {
flex: 1 0 auto;
}
Link to refer: https://prnt.sc/10wdgkl
Hope this helps.