I can’t seem to figure out why there is no right border for the last child in the main menu:
https://www.mhmbuild.com/crested-butte-general-contractor/
Contact Us should have a right border as well.
Thanks
Disregard – i figured it out. Seems like a bug though.
if you have the same problem:
.menu-item-top-level-#(replace # with your menu item number)
{border-right-style:solid!important;
border-right-width:1px!important;}
it is because these separators are set with border-left option.
you can add this to quick css :
.av_seperator_big_border .av-main-nav > li#menu-item-1439 > a {
border-right-style: solid;
border-right-width: 1px;
}
maybe an important is necessary – but try first without.
Thanks – yes I figured it out a different way – but that would work as well – still seems odd that the last child wouldn’t by default have a right border. Thanks for your help though!!
is it intentional that the hamburger menu is also hidden?
you got that intention to have the mobile menu break at 1320px but the display none of
nav.main_menu {
display: none !important;
}
hides the hamburger too:
try this instead:
@media only screen and (max-width: 1320px) {
#avia-menu {
display: none !important;
}
#advanced_menu_toggle, #advanced_menu_hide {
display:block !important;
}
}
i do not know why then the hamburger is centered because on default the mobile hamburger icon goes to the right:
https://kriesi.at/themes/enfold-medical/
Thanks yes – that was a mistake on my part – carried over from another site. I removed it and allowed the Enfold settings to do their thing as per usual.
Hi ewingmh,
Thanks for the update, so everything is working as it should now then? Thanks @guenni007 for helping out.
Best regards,
Rikard