Hello, I have added two ads side by side on my website, i want a space between them .. how can i do this please? here is the code ads </script> <script type="text/javascript" src="http://3333.com/show_ads.js"> </script> ads src="http:3333.com/show_ads.js"> </script> Code (markup): Here is how it is appearing on my website .. please help me to have a space between them, they will be side by side View attachment 84905
Have you tried placing the two ads within their own div? The first div can include a margin between the two. <div style="margin-right: 20px; float: left;"> <!-- ad 1 --> </div> <div style="float: left;"> <!-- ad 2 --> </div> Code (markup):