Howdy, I split my menu with the logo in the center per the instructions on your documentation. The logo is overlapping the menu on the both the right and left, how would I resolve this?
Hey dallasstar08,
Thank you for your patience, try searching the customized css for this:
@media only screen and (min-width: 780px){
#top #header .av-main-nav li:nth-child(3) {
margin-right: 150px;
}
}
margin-right: 150px; and change to 275px, then clear your browser cache and any cache plugin, and check.
Best regards,
Mike
Thanks @mike. That kinda worked. How would I make Services not so far left (like the sam e distance as Area from the logo)?
Hi,
Try this css instead:
@media only screen and (min-width: 780px){
#top #header .av-main-nav li:nth-child(3) {
margin-right: 125px;
}
#top #header .av-main-nav li:nth-child(4) {
margin-left: 125px;
}
#top .main_menu .avia-menu.av_menu_icon_beside {
padding-right: 0;
}
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike