Floating corner banner/ad?

csc1990

Registered Member
Joined
Jun 29, 2010
Messages
64
Reaction score
11
I want to place a banner in the corner of a site I am building. It will be basically just like the one on the Warrior Forum that prompts people to sign up for the 'war room.' How can I go about making this a reality?
 
Code:
<div class="angular_advertisement angadver_bottom angadver_right">
<a href="http://www.warriorforum.com/warrior-forum-news/119745-warrior-forum-going-back-paid-status.html" target="_blank">
<img border="0" src="http://www.warriorpro.com/banner-02.gif" alt="War Room" title="War Room">
</a>
</div>
Then you need the 3 classes in your style sheet

Code:
.angadver_bottom {
    bottom: 0;
}

.angadver_right {
    right: 0;
}

.angular_advertisement {
    position: fixed;
}
That should get you close. Good luck
 
Last edited:
Back
Top