Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1494605

    Hi .. i need to build a page with large content like Legal Disclaimer. This page sould noch have the browser scrollbars, so i would like to build it with two block beside each other. The left one should contain the text and have scrollbars, the right one onle a background image that will have same height as the left block.

    How can i add scrollbars to the content of the left block to make text scrollable?

    #1494610

    Hey Sebastian,

    Thank you for the inquiry.

    You can use the Column elements from the Advanced Layout Builder (ALB). Add a custom CSS class to the first (left) column (for example, av-column-with-scrollbar), then add custom css to limit its height and enable a scrollbar.

    .av-column-with-scrollbar {
      height: 100vh; 
      overflow-y: auto;
      overflow-x: hidden;
    }

    For the right column, add the class name “av-column-without-scrollbar”, then add this css code:

    .av-column-without-scrollbar {
      height: 100vh;
    }

    Let us know the result.

    Best regards,
    Ismael

    #1494625

    It is not working

    #1494647

    Hi,

    Thank you for the update.

    The Row Settings > Row Layout > Equal Height Columns option should be disabled. We edited the page and disabled this option. It should now be working as expected.

    Best regards,
    Ismael

    #1494661

    Ei caramba :)

    But great, it works.
    Thx – we can close here

    #1494746

    Hi,

    Thanks for the update. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘2 blocks: one static, one scrollable’ is closed to new replies.