1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Looking for a code

Discussion in 'HTML & Website Design' started by Digital helper, Oct 3, 2013.

  1. #1
    I am looking for simple code that you can take a link and turn it into a banner that stayes at the bottom of your screen.
    Thanks in advanced.
     
    Digital helper, Oct 3, 2013 IP
  2. shipumh

    shipumh Active Member

    Messages:
    44
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    61
    #2
    Your question is not clear.
    Explain a little bit so you might get an answer.
     
    shipumh, Oct 3, 2013 IP
  3. clenard

    clenard Active Member

    Messages:
    458
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    95
    #3
    I'm assuming you're looking for a way to create a DIV container that will position at the bottom of the window (browser) and stay there.

    You'll need a div:
    <div id="bottom-ad">
      <img src="http://yourimg.com/yourimg.png" />
    </div>
    Code (markup):
    Then you'll need CSS:
    .bottom-ad {
        bottom:0;
        position:fixed;
        z-index:100;
        position:absolute;
        height: 70;
    }
        
    Code (markup):
    Of course, this is not tested and I'm assuming you're not familiar with HTML and CSS, so I'll check back to see if this is of any help.
     
    clenard, Oct 3, 2013 IP
  4. slimx

    slimx Greenhorn

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #4
    I think he meant static like.. "follows the browser as it scrolls down"
     
    slimx, Oct 3, 2013 IP
  5. anonymous01

    anonymous01 Greenhorn

    Messages:
    120
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    13
    #5
    Sorry, I guess I did not explain myself enough.
    Anyway, Iframe works for me.
     
    anonymous01, Oct 8, 2013 IP