Change theme menu position

Does anyone know how I can move the theme menu horizontally left?

I’m sure I should be able to reposition this with css code - but can’t find any code to do this

Any suggestions welcome - Thanks

It’s always best to provide a URL to at least a test page when asking for help with CSS.

3 Likes

Sorry - the site is here: https://briteangle.com

Give this a try:

#main_navigation {
   float: initial;
}

Then you can adjust it back to the right be changing the margin on the logo

#logo {
   margin-right: 35px;
}

Adjust the margin value to what you want.

1 Like

Thanks for your help - I must be doing something wrong…
I’ve inserted code into the CSS code window but not working for me
Is there something else I need to do? - CSS code window now has following:

#logo img {
max-height: 50px !important;
height: 50px !important;
}

#main_navigation {
float: initial;
}

#logo {
margin-right: 40px;
}

Instead of:

#main_navigation {
    float: initial;
}

Try:

#navigation_wrapper {
    float: initial;
}
3 Likes

Awesome… That did the trick. Thanks guys for your help.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.