Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Hi
I wanted to move over my menu buttons from the left to the right.
I accomplished this by changing the margin-right for the logo (it was 15px). I have the logo in the masthead
header#masthead.masthead-logo-in-menu .logo {
float: left;
padding: 12px 0;
margin-right: 325px;
}
Which works great for the desktop version but it really messed up the appearance of the header in my responsive layouts.
Is there a way to accomplish this without screwing up the responsive layout?
Thanks!
Arieann
URL: http://kitables.us
Hi Arieann
Please try removing your Custom CSS for this section and trying the below instead:
/* Vantage right align the main menu */ .main-navigation ul { font-size: 0; text-align: right; } .main-navigation ul li { display: inline-block; float: none; font-size: 13px; } .main-navigation ul ul li { text-align: left; }That worked great! Thank you
Super, glad that helped.