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

    I want my logo to be all the way left and the menu to be all the way right on large screens but there appears to be a div issue keeping the menu from going to the right. example in test site – the div i made red seems to be the issue

    How can I get the menu all the way right?

    #1433181

    First there is a setting on header – header-behavior : “Let Logo And Menu Position Adapt To Browser Window”
    ( av_header_stretch ) –
    but there will be always a distance of logo to the left (in your case) and menu-items ( they all have paddings ) to the right.
    Depending on the screen width, the content of the header is set on default to a value less than 100%.
    Did you realy want to get rid even of that distance? – than you had to set that width to 100%.

    .html_header_top #top .av_header_stretch .container {
      width: 100%;
    }

    and on responsive case ( 768px or 989px)

    @media only screen and (max-width: 989px) {
      .responsive #top #wrap_all #header .container {
        width: 100%;
        max-width: 100%;
      }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.