Home › Forums › Trusted › Change the position of menu(right) to left in mobile screen display › Reply To: Change the position of menu(right) to left in mobile screen display
September 7, 2017 at 2:21 pm
#1980
Andy
Keymaster
Hi, to move mobile menu to left, add this CSS in Appearance > Customize > Additional CSS:
@media screen and (max-width: 1024px){
.toggle-nav{
right: auto;
left: 0;
}
.toggle-nav.is-visible{
margin-right: 0;
margin-left: -250px;
}
#page.is-visible {
right: auto;
left: 250px;
}
#masthead.is-visible {
left: 250px;
border-right: 0;
border-left: 1px solid rgba(255,255,255,0.1);
}
#page.is-visible #primary-menu,
#masthead.is-visible #primary-menu{
right: auto;
left: 0;
}
}
I haven’t fully tested it, so if it doesn’t work let me know and I’ll modify the code.