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.
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
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
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