Archived topic
Scrollable Sidebar
3 replies · Started by Dominik on January 20, 2020
Hi there,
we have made a landingpage where the contact form in the sidebar (and afterwards in the bottom of the page) is a major feature. Everything works well until you fill the form and upload some PDF-files :/
the form is getting very long and the send button can not be reached anymore.
is there a way to scroll within the sidebar (as long as it sticks to the side)?
Thanks for your support!
Best regards,
Dominik
Hi there,
so this CSS may do the trick by restricting the height of the container to 95% of the browser viewport height and setting the overflow to scroll.
.inside-right-sidebar .wpforms-form {
max-height: 95vh;
overflow-y: scroll;
}
PERFECT! Thanks a lot! :D
You're welcome