Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #321759

    None of the pages with sidebars are mobile responsive..please advise!

    I have enable sidebar on mobile checked in Enfold settings. Sidebar is displaying below content but content is not responsive when a sidebar is active on the page.

    Pages without sidebar are responsive on mobile and tablets.

    #321835

    Hi finchkelsey!

    Thank you for using Enfold.

    You added a custom css that breaks the container:

    .responsive .container .nine.units {
    width: 700px;
    }

    Add this at the very bottom:

    @media only screen and (max-width: 767px) {
    .responsive .container .nine.units {
    width: 100%;
    }
    }

    Regards,
    Ismael

    #322067

    Oh my, thank you for that.

    When the site is on mobile landscape/horizontal the grid blog 3 in a row breaks into 1 larger thumb on one row and two smaller thumbs on another row. How can I get these to scale proportionately so they remain three on a row?

    http://www.actiondoorltd.com/doors/garage-doors-residential/

    Thank you

    #322237

    Hey!

    You can try this:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .avia-content-slider-even .slide-entry.slide-parity-odd, .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even {
    margin: 0;
    clear: none;
    float: left;
    }
    
    .responsive #top #wrap_all .slide-entry {
    width: 30%;
    margin-left: 4%;
    }
    }

    Regards,
    Ismael

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