Site logo

Archived topic

Table / Mobile Menu Issue

3 replies · Started by John on December 13, 2018

Viewing posts 1–4 of 4

Hi

Apologies if there is a solution already posted in a previous thread but im having some trouble with the table menu.

I currently have the below code to set the breakpoint to 1360px which works but the tablet hamburger menu appears under the logo and centered. Mobile menu looks correct so how can i get the tablet to display the same as mobile? Ie floating right on same line as logo.

@media (max-width: 1360px) {
.main-navigation .menu-toggle,
.main-navigation .mobile-bar-items,
.sidebar-nav-mobile:not(#sticky-placeholder) {
display: block;
}

.main-navigation ul,
.gen-sidebar-nav {
display: none;
}

[class*="nav-float-"] .site-header .inside-header > * {
float: none;
clear: both;
}
}

Hi there,

add this CSS inside the media query, just before the closing }

.inside-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.site-logo {
    margin-right: auto;
}

Thanks David - That worked!

You're welcome

This archived topic is closed to new replies.