Kyle Watkins Posted November 16, 2013 Report Share Posted November 16, 2013 Hello, I am having trouble with my pilot center awards bit. I am trying to only write 3 awards per line but having troubles. Any clue how to write only 3 awards per line? <strong>My Awards</strong></p> <table width="450px"> <tr> <td><?php if(!$allawards) { echo '<center><img src="http://www.voegolv.n...g_recusado.png" border="0" /><br><font face="Trebuchet MS" size="2">Piloto sem Awards.</font></center>'; } else { /* To show the image: <img src="<?php echo $award->image?>" alt="<?php echo $award->descrip?>" /> */ ?> <?php foreach($allawards as $award){ ?> <img src="<?php echo $award->image?>" alt="<?php echo $award->name ?> - <?php echo $award->descrip?>" /> <?php } ?> <?php } ?></td> </tr> </table> Thanks, Kyle W Quote Link to comment Share on other sites More sharing options...
Kyle Watkins Posted November 16, 2013 Author Report Share Posted November 16, 2013 Fixed! Added VALIGN=top to the table style so it would drop down into a new line when table is exceeded. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.