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.
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.