Wrapping images?

liunx

Guest
Please take a look at <!-- m --><a class="postlink" href="http://www.gameshipper.com/catalog/">http://www.gameshipper.com/catalog/</a><!-- m -->. />
<br />
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.<br />
<br />
I currently have the images side by side in a table cell...anyway I can get it to wrap down for lower res users?<br />
<br />
Thanks.<!--content-->I get a horizontal scrollbar in 1024x768... You might want to just wrap it in the first place, if not, try this:<br />
<br />
<script language="javascript" type="text/javascript"><br />
if (screen.width < 1024) {<br />
document.write("<br/>");<br />
}<br />
</script><!--content-->Ah great just what I was lookin for, thanks.<!--content-->
 
Back
Top