This snippet combined with your container, will appear at the bottom (or top) of the page and slide in once the user scrolls past a certain amount of page.
JS Code SnippetOn the page you want this to appear, add an HTML widget (FREE) and paste the code in there. Be sure to have < script> before your code and after the code if it isn't already inserted above.
Instructions
Make sure to add the class "your-container" in the entire container CSS under advanced.
jQuery(document).ready(function($) { $(window).scroll(function() { if ($(this).scrollTop() > 350) { $('.your-container').slideDown(); // Show the container with slideDown animation } else { $('.your-container').slideUp(); // Hide the container with slideUp animation } }); });