Skip to main content

Hi @CampbellNelson welcome to the Unbounce community 🙂


You could just add a sticky-bar to the page with the form fields you need. Already built into Unbounce…boom easy-peasy.


Or…You could add the following custom CSS. Which will fix the form to the side of the page. Don’t forget to change the element ID.


<style>
#lp-pom-box-185 {
position: fixed !important;
right: 0 !important;
margin: 0 auto;
z-index: 999;
}

@media only screen and (max-width: 525px){
#lp-pom-box-185 {
position: relative !important;
}
}
</style>

Hope that helps!


Reply