Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #446720

    Hi,
    I would like to change the breakpoint for when the sidebar moves beneath the main content.
    Can you please show me how to do this?
    I tried on my own with a css media query, but the result was less than ideal.

    Thanks,
    Warren

    #446756

    Hey Warren!

    Try with the following:

    @media only screen and (max-width: 989px) {
      .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
      }
      .responsive .content{
          border:none;
      }
    }

    Cheers! 
    Josue

    #447220

    Thanks Josue. This works in Chrome and Safari, and I tweaked it a little bit for my needs.

    In Firefox, when the viewport width is between 768px and 990px, the sidebar disappears completely. I’m not too worried about it because our users will rarely, if ever, be using Firefox at that width, buy if you happen to know why this happens and have a quick fix for it, please let me know.

    Thanks

    #447404

    Hi,

    Can you post the link to your website please?

    Regards,
    Josue

    #447846
    This reply has been marked as private.
    #448546

    Hey!

    Add this:

    @media only screen and (max-width: 989px) {
      .responsive .sidebar{
         clear: both !important;
      }
    }

    Regards,
    Josue

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