A sticky footer ad sticks to the bottom of the viewport, providing a non-intrusive, highly visible ad placement. Freestar automatically injects the sticky footer onto the page without any on-page code change.
Overview
A sticky footer ad sticks to the bottom of the viewport, providing a non-intrusive, highly visible ad placement.
Freestar automatically injects the sticky footer onto the page without any on-page code change.
- An example sticky footer: here
Inject an On-Call Sticky Footer
Freestar can configure a sticky footer as on-call, allowing the publisher to control its injection.
Use the newStickyFooter method to create a sticky footer. placementName is a required value.
JavaScript
freestar.queue.push(function() {
freestar.newStickyFooter("placementName");
});
Delete a sticky footer
Use the deleteStickyFooter method to destroy an active sticky footer. placementName is a required value.
JavaScript
freestar.queue.push(function() {
freestar.deleteStickyFooter("placementName");
});
Disabling a Sticky Footer
Information on disabling products can be found on the Disabling Products Page. The product key is stickyFooter.
JavaScript
freestar.config.disabledProducts = {
stickyFooter: true
};
📘 Please submit a request here if you need additional assistance.