Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #395407

    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

    #395425

    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

    #395460

    Worked like a charm !! Thank you ;)

    #395475

    You are welcome, glad to help :)

    Regards,
    Josue

    #395746

    Hi, is it possible to keep that funcionality but only in one page?
    Thank you

    #395754

    Are you using a child theme?

    Best regards,
    Josue

    #395798

    No

    regards

    #396007

    Ok, revert the mod on grid.css and paste a link to the page you don’t want the columns to stack.

    Regards,
    Josue

    #396674

    Hello, i just need to website to stack columns in one page, the first one of the website.
    Regards

    #396789

    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

    #406580

    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

    #406817

    Hi!

    Not sure if you are using the wrong ID, you can find it by inspecting the page and you will find something like page-id-734 in the class of the body tag.

    Cheers!
    Rikard

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