Hi, my client wants the website to always have the same look, no matter how tiny it gets… So is there an way to disable the vertical stack of columns below 767px width? Only in the content, the main menu can turn into responsive mode.
Thank you
Hi,
Open css/grid.css and remove 107-111:
.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%;
}
Regards,
Josue
Worked like a charm !! Thank you ;)
You are welcome, glad to help :)
Regards,
Josue
Hi, is it possible to keep that funcionality but only in one page?
Thank you
Are you using a child theme?
Best regards,
Josue
No
regards
Ok, revert the mod on grid.css and paste a link to the page you don’t want the columns to stack.
Regards,
Josue
Hello, i just need to website to stack columns in one page, the first one of the website.
Regards
Hi!
Add this code to Quick CSS:
@media only screen and (max-width: 767px) {
.responsive #top.page-id-x .container .av-content-small, .responsive #top.page-id-x #wrap_all .flex_column, .responsive #top.page-id-x #wrap_all .av-flex-cells .no_margin {
margin: 0;
margin-bottom: 20px;
width: 100%;
}
}
Change “x’ by the ID of the page you want to affect.
Best regards,
Josue
Thank you Josue, i’ve made that changes but still nothing happens.
Was i supposed to revert the original grid.css code?
Or i’m i using the wrong page id? I’ve set an section id on the avia builder, is that the correct page id info?
regards
Pedro