The fullwidth submenu is left aligned, and the top menu as well. However, my fullwidth submenu is positioned 38 pixels too far to the left. I know I can move it using CSS
#top .av-subnav-menu {margin-left: 38px;}
but when I resize the window the alignment is off again. What should I do?
Hey ocetechnologies!
you could work with media queries to prevent that. So an extra code for a different screen size is needed. Something like:
@media only screen and (max-device-width: 736px) {
#top .av-subnav-menu {
margin-left: 38px;
}}
Adjust as needed.
Cheers!
Andy