Banner Ad rotator website

8 replies
Are there any 3rd party websites out there which provide this service? I'm not the best at coding and therefore would love a website which you can just upload the banners and links to and it gives you a piece of code to upload to your site. Something like what wufoo does for forms.

Are there any sites out there which does this for banner ad rotators?
#banner #rotator #website
  • Profile picture of the author JamesW3
    Originally Posted by jasonallvall View Post

    Are there any 3rd party websites out there which provide this service? I'm not the best at coding and therefore would love a website which you can just upload the banners and links to and it gives you a piece of code to upload to your site. Something like what wufoo does for forms.

    Are there any sites out there which does this for banner ad rotators?
    I think you can just use a regular image upload site if its not animated. It might give the html. Otherwise, a few divs and lines of code is all that is needed. You might want to post this is the website section.
    {{ DiscussionBoard.errors[8208402].message }}
    • Profile picture of the author jasonallvall
      Originally Posted by JamesW3 View Post

      I think you can just use a regular image upload site if its not animated. It might give the html. Otherwise, a few divs and lines of code is all that is needed. You might want to post this is the website section.
      Any idea what lines of code I would need to put in? Ive been searching for a hour and all the sites look really spammy. I would much prefer writing it myself if its just a few lines
      {{ DiscussionBoard.errors[8208448].message }}
      • Profile picture of the author Cram
        I've heard clixtrac.com has a banner ad tracker, just haven't tried them.
        oiopublisher.com works with WP or stand alone sites.

        Openx has a free hosted script you will need to install then you will be able to rotate banners ads.
        {{ DiscussionBoard.errors[8208908].message }}
  • Profile picture of the author hsbinmarket
    Originally Posted by jasonallvall View Post

    Are there any 3rd party websites out there which provide this service? I'm not the best at coding and therefore would love a website which you can just upload the banners and links to and it gives you a piece of code to upload to your site. Something like what wufoo does for forms.

    Are there any sites out there which does this for banner ad rotators?
    I dont like to say this is not possible/ there is nothing. It needs research to find the way out.
    Signature

    Do not put the links to a malware-infected site back in your signature

    {{ DiscussionBoard.errors[8208929].message }}
  • Profile picture of the author PROmotions LLC
    Put this in your header:

    <script language="JavaScript1.2">

    var howOften = 5; //number in seconds to rotate
    var current = 0; //start the counter at 0
    var ns6 = document.getElementById&&!document.all; //detect netscape 6

    // this is where your images go
    var items = new Array();
    items[1]="<a href='link banner 1 goes to' ><img alt='image1 (9K)' src='banner image url 1' height='300' width='300' border='0' /></a>"; //a linked image
    items[2]="<a href='link banner 2 goes to'><img alt='image2 (9K)' src=banner image url 2' height='300' width='300' border='0' /></a>"; //a linked image
    items[3]="<a href='link banner 3 goes to'><img alt='image3 (9K)' src='banner image url 3' height='300' width='300' border='0' /></a>"; //a linked image
    items[4]="<a href='link banner 4 goes to'><img alt='image4 (9K)' src='banner image url 4' height='300' width='300' border='0' /></a>"; //a linked image
    items[5]="<a href='link banner 5 goes to'><img alt='image5 (9K)' src='banner image url 5' height='300' width='300' border='0' /></a>"; //a linked image
    items[6]="<a href='link banner 6 goes to'><img alt='image6 (18K)' src='banner image url 6' height='300' width='300' border='0' /></a>"; //a linked image
    function rotater() {
    document.getElementById("placeholder").innerHTML = items[current];
    current = (current==items.length-1) ? 0 : current + 1;
    setTimeout("rotater()",howOften*1000);
    }

    function rotater() {
    if(document.layers) {
    document.placeholderlayer.document.write(items[current]);
    document.placeholderlayer.document.close();
    }
    if(ns6)document.getElementById("placeholderdiv").i nnerHTML=items[current]
    if(document.all)
    placeholderdiv.innerHTML=items[current];

    current = (current==items.length-1) ? 0 : current + 1; //increment or reset
    setTimeout("rotater()",howOften*1000);
    }
    window.onload=rotater;
    //-->
    </script>
    Then put this where you want them on your page:

    <layer id="placeholderlayer"></layer><div id="placeholderdiv"></div>
    Change this for how often you want them to change (in seconds) 5= 5 seconds

    var howOften = 5; //number in seconds to rotate
    Don't forget to make the image W&H the same as the images size.
    Signature

    Signature!

    {{ DiscussionBoard.errors[8208971].message }}
  • Profile picture of the author jasonallvall
    PM sent to you
    {{ DiscussionBoard.errors[8211288].message }}
  • Profile picture of the author mardox1
    I did use a site called adsfreak.net but I'm not sure if they are still around.. I will do some research and get back to you.
    {{ DiscussionBoard.errors[8241559].message }}
  • {{ DiscussionBoard.errors[8241611].message }}

Trending Topics