Rudy,
Nope. The pictures are side by side instead of centered on top of one another. The problem is that you haven't allowed for different users to have different screen widths. Some people are viewing the image on 640x480 monitors, some on 800x600, some on 1024x768 and so on. When someone with more screen area views the page, there is room for the images to be side by side, so it displays them that way. When someone with a lower resolution or a smaller browser window views the site, the browser stacks them up.
It looks like there is a small typo in your code. The offending line is:
<center><img src="http://www.casinochips.net/caesars/cae_sign.gif" r><img src="http://www.casinochips.net/caesars/cae2.jpg"></center><br>
It should be:
<center><img src="http://www.casinochips.net/caesars/cae_sign.gif"><br><img src="http://www.casinochips.net/caesars/cae2.jpg"></center><br>
the problem being that part of the code for the line break after the first image is missing.
Greg Susong
|