Aligning Logo to Left and Menu to Right in Mobile Responsive View
-
I’m working on a client site and on desktop it looks fine, but when moving to mobile the logo and menu are positioned in the center and I’d like to have the logo aligned to the left and the Menu button aligned to the right. I’ve tried all of the following CSS code to force the change with no luck. Thanks in advance for your help!
@media only screen and (min-width: 560px)
.main-navigation > div {
background: transparent;
border: 0;
border-radius: 0;
left: auto;
margin-top: 0;
padding: 0;
position: left;
right: auto;
z-index: 1;
}#site-navigation {
position: left;
}.site-branding {
margin: 0;
margin-right: 0px;
}#logo .custom-logo {
margin: 0;
}The page I need help with: [log in to see the link]
- The topic ‘Aligning Logo to Left and Menu to Right in Mobile Responsive View’ is closed to new replies.