Monetization Framework
Templates
Choose from a variety of copy+paste templates that have proven to work well over many years of testing.
Fancy Bar
Fancy Bar is a full-width unit that descends from the top of the browser when the user scrolls down the page. It is dismissible, and stays dismissed for 6 hours.
JavaScript
<script src="//m.servedby-buysellads.com/monetization.js" type="text/javascript"></script>
<script>
(function() {
if (typeof _bsa !== 'undefined' && _bsa) {
_bsa.init('fancybar', 'CVADC53U', 'placement:yoursitedomain');
}
})();
</script>
Flex Bar
Flex Bar is a full-width "notification"-like unit that sits at the top of the browser window. It differs from Fancy Bar in that it does not slide into view when the user scrolls and is persistent in the browser window. It is dismissible, and stays dismissed for 6 hours.
JavaScript
<script src="//m.servedby-buysellads.com/monetization.js" type="text/javascript"></script>
<script>
(function() {
if (typeof _bsa !== 'undefined' && _bsa) {
_bsa.init('flexbar', 'CVADC53U', 'placement:yoursitedomain');
}
})();
</script>
Hover Card
Hover Card is a beautiful banner that animates when hovered with a mouse cursor.
JavaScript
<script
src="//m.servedby-buysellads.com/monetization.js"
type="text/javascript"
></script>
<div id="hovercard"></div>
<script>
(function() {
if (typeof _bsa !== 'undefined' && _bsa) {
_bsa.init('hovercard', 'CVADC53U', 'placement:yoursitedomain', { target: "#hovercard" });
}
})();
</script>
Hello Bar
Hello Bar is a small floating ad unit that shows up from the bottom of the screen when the site visitors scroll on your website. It can be hidden for 12 hours.
JavaScript
<script src="//m.servedby-buysellads.com/monetization.js" type="text/javascript"></script>
<script>
(function() {
if (typeof _bsa !== 'undefined' && _bsa) {
_bsa.init('hellobar', 'CVADC53U', 'placement:hellobar-demo');
}
})();
</script>
Sticky Box
Sticky Box is a small box positioned in the bottom right corner of the browser window. It is dismissible, and stays dismissed for 12 hours.
JavaScript
<script src="//m.servedby-buysellads.com/monetization.js" type="text/javascript"></script>
<script>
(function() {
if (typeof _bsa !== 'undefined' && _bsa) {
_bsa.init('stickybox', 'CVADC53U', 'placement:yoursitedomain');
}
})();
</script>