Tagged: logo center text menu
hello,
i am trying to build a site with a main menu with text menu links on the left, logo in the center and a widget on the right.
i followed these steps:
and here:
i am wondering how the main menu can be displayed as normal text links and not as a burger menu with flyout on the desktop…? (burger should remain for mobile)
is there an easy fix to accomplish that?
thanks!
chris
i think i figured it out…
in the css code for the center logo menu i uncommented the burger menu part…
/* Activate burger menu */
/*
@media only screen and (min-width: 767px) {
#top #header .av-main-nav>li.menu-item {
display: none!important;
}
#top #header .av-burger-menu-main {
cursor: pointer;
display: block!important;
}
}
*/
@media only screen and (max-width: 767px) {
/* Mobile menu position fix */
.responsive #top .av-logo-container .avia-menu {
display: flex!important;
align-items: center;
}
}