Link to home
Create AccountLog in
Avatar of isnoend2001
isnoend2001Flag for United States of America

asked on

Trying to float an image to the right of a list

I am trying to float an image to the right of a list
Bottom center of this page:
http://roofgenius.com/test2.asp
The list drops too low in the division and does not line up with the image
How can i write this?
ASKER CERTIFIED SOLUTION
Avatar of Gary
Gary
Flag of Ireland image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of isnoend2001

ASKER

thanks that works
I deleted the div clear:both just below your div style float, also got rid of the margin you had on the float.
If you add padding-top: 25px; to the videooutline css class your image will float perfectly.


<div class="videooutline">
<div style="float">
<img src="Videos/Video images/Videoimage.jpg" width="100" height="90" alt="Play videos" title="Click a link to the left to play a video">
</div>

Open in new window