Skip to main content

I have a few questions about features for Unbounce pages:




  1. Is there a way to make URL parameters pass through images? I found that you can upload images as buttons, and I have the code of text links, but cannot figure out how to pass parameters with just images.




  2. Does Unbounce support flyouts? I’d like for people who are interested about a product to be able to click on an image and have a popup that explains additional info.




  3. What about carousels? Is there a way to put these on an Unbounce page, so individuals can cycle through multiple slides of information in a single space?




  4. How would I add a fixed header to a page? It would be helpful to have the logo that clicks to our homepage and a call-to-action showing no matter where someone may be on the page.



Hey there!


For the most part most of the features you’re looking for can be done, though they require a little custom code. I’ve included some that have been successfully used by other customers in the past



  1. Here’s a script you can drop in that will carry over URL parameters to all image links on your page


<script> <br /> $(document).ready(function() { <br /> var params = window.location.search; <br /> var button = $('.lp-pom-image div a').each( function(i) { <br /> this.href = this.href + params; <br /> }); <br /><br /> }); <br /> </script>




  1. We do support lightboxes which can bring up a alternative page within the window

    http://support.unbounce.com/entries/2…




  2. Jen gordon put together a image carousel solution. Though do proceed with caution as some users have found carousels decreased their conversion rate.

    http://www.jengordon.com/how-to-embed…




  3. Here’s a solution for using fixed headers on Unbounce

    https://getsatisfaction.com/unbounce/…




Reply