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
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
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
Hi,
Can you post the link to your website please?
Regards,
Josue
Hey!
Add this:
@media only screen and (max-width: 989px) {
.responsive .sidebar{
clear: both !important;
}
}
Regards,
Josue