Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #474009

    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?

    #474830

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.