Logo Rotator

USHost247

Madly Diligent
Joined
Jul 8, 2009
Messages
8,102
Reaction score
1,036
FP$
5,440
Okay hey guys. Needing some help with coding a banner rotator.

I have the absolute set to place the ads down at the bottom right on the midnight skin on YAP.

My class is set to "bannerads" and I placed a java script to rotate the images but then it didn't want to show in the absolute placement that I told it to display in the css.

Can anyone help me make a banner rotator that link to class="bannerads" in the css?

Will rep if works.
 
Absolute positioning can get tricky, especially when you don't have that much experience with HTML / CSS - best to stay away from it if possible.

Where exactly are you trying to put the banner rotator?
 
Murder he Wrote said:
Absolute positioning can get tricky, especially when you don't have that much experience with HTML / CSS - best to stay away from it if possible.

Where exactly are you trying to put the banner rotator?
I agree. I once tried position:absolute but turns out that floating is a lot more helpful to my perception when it can be used. I suggest you use position:absolute sparingly.
 
If you go to youradpromotion.com you can see where im trying to place it. I have had 2 years of class for html. But been a while since I've actually tried to code.
 
ChrisG2010 said:
If you go to youradpromotion.com you can see where im trying to place it. I have had 2 years of class for html. But been a while since I've actually tried to code.
Still, where it is the banner will block some of the logo and make it a bit ugly. Know any other palce you can put it?

P.S. Never mind. I think I see where you're trying to put the banner now. I hope MhW's method works for you.
 
Try this after your logo code:
Code:
<div style="float: right; margin-top: 20px; margin-right: 400px"><img src="http://i35.tinypic.com/24y1vnd.png" /></div>
 
Back
Top Bottom