How to move menu on main menu bar

I want to move logo to left side. I have added
.x-navbar-inner .x-brand {
margin-left: -50px;
}
to x - theme options - css. Basically that works, but when using larger screen the logo won´t be on very left. With smaller screens it is ok on left end. Any solutions available?

Got a solution besides that css. X - Options - Layout and Design. Site max width need to be adjusted. Maybe not perfect but seems to work somehow.

Hey Floriance,

Yes, that is an option bit in case you want to only change the max width to the header area, you may add this code in the Global CSS:

.x-navbar-inner .x-container {
    max-width: 100%;
    width: 100%;
}

Feel free to change the values in the code.

Hope this helps.

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