Click to See Complete Forum and Search --> : Wrapping images?


Skeedo
05-10-2003, 05:03 PM
Please take a look at http://www.gameshipper.com/catalog/.

I would like the 'steals 'n deals' graphic to appear under the publishers graphic if the users resolution is less than 1024x768, because they will get a horizontal scrollbar.

I currently have the images side by side in a table cell...anyway I can get it to wrap down for lower res users?

Thanks.

pyro
05-10-2003, 08:58 PM
I get a horizontal scrollbar in 1024x768... You might want to just wrap it in the first place, if not, try this:

<script language="javascript" type="text/javascript">
if (screen.width < 1024) {
document.write("<br/>");
}
</script>

Skeedo
05-11-2003, 11:36 AM
Ah great just what I was lookin for, thanks.