xoligy Posted September 22, 2008 Share Posted September 22, 2008 ok im working on my awards page and ive nearly done it but i just went to check it with 1 award and ive noticed the table its in looses its shape here is whats happend: img didnt show: http://img151.imageshack.us/my.php?image=tablessn0.jpg as you can see there are 9cells in total and here is what code im using: <table bgcolor="#003366" width="100%" height="211px" border="0"> <tr align=center><td><? if ($award[0]>0){ echo '<img src="images/awards/gun-gold.gif"><br>'.$award[0].'<br>Gold Award(s)'; }else{ echo" ";} ?></td><td><? if ($award[1]>0){ echo '<img src="images/awards/gun-silver.gif"><br>'.$award[1].'<br>Silver Award(s)'; }else{ echo" ";} ?></td><td><? if ($award[2]>0){ echo '<img src="images/awards/gun-bronze.gif"><br>'.$award[2].'<br>Bronze Award(s)'; }else{ echo" ";} ?></td></tr> <tr align=center><td><? if ($award[3]>0){ echo '<img src="images/awards//medal-gold.gif"><br>'.$award[3].'<br>Gold Award(s)'; }else{ echo" ";} ?></td><td><? if ($award[4]>0){ echo '<img src="images/awards/medal-silver.gif"><br>'.$award[4].'<br>Silver Award(s)'; }else{ echo" ";} ?></td><td><? if ($award[5]>0){ echo '<img src="images/awards/medal-bronze.gif"><br>'.$award[5].'<br>Bronze Award(s)'; }else{ echo" ";} ?></td></tr> <tr align=center><td><? if ($award[6]>0){ echo '<img src="images/awards/guntrophy-gold.gif"><br>'.$award[6].'<br>Gold Award(s)'; }else{ echo" ";} ?></td><td><? if ($award[7]>0){ echo '<img src="images/awards/guntrophy-silver.gif"><br>'.$award[7].'<br>Silver Award(s)'; }else{ echo" ";} ?></td><td><? if ($award[8]>0){ echo '<img src="images/awards/guntrophy-bronze.gif"><br>'.$award[8].'<br>Bronze Award(s)'; }else{ echo" ";} ?></td></tr> </table> Link to comment https://forums.phpfreaks.com/topic/125277-solved-keep-table-layout-when-there-is-a-whitespace/ Share on other sites More sharing options...
Mr_J Posted September 22, 2008 Share Posted September 22, 2008 Hi, I`m no guru but from what I can see is that this page is the GOLDEN AWARD right? If so, you use " else{ echo" ";} " for both silver and bronze then there will be a n EMPTY SPACE. Try border="0" Link to comment https://forums.phpfreaks.com/topic/125277-solved-keep-table-layout-when-there-is-a-whitespace/#findComment-647566 Share on other sites More sharing options...
xoligy Posted September 22, 2008 Author Share Posted September 22, 2008 i already have echo "$nbso; in all others i can try adding border=0 tho there wshouldnt be one :/ Link to comment https://forums.phpfreaks.com/topic/125277-solved-keep-table-layout-when-there-is-a-whitespace/#findComment-647568 Share on other sites More sharing options...
Mr_J Posted September 22, 2008 Share Posted September 22, 2008 i already have echo "$nbso; in all others i can try adding border=0 tho there wshouldnt be one :/ IMO, HTML get send to the browser "as is" and the php is for pre-processing before sending out to the browser. Logic tells me to make the cell borders "0" Hope it helps... Link to comment https://forums.phpfreaks.com/topic/125277-solved-keep-table-layout-when-there-is-a-whitespace/#findComment-647569 Share on other sites More sharing options...
xoligy Posted September 22, 2008 Author Share Posted September 22, 2008 table borders are set to "0" it says in the first line Link to comment https://forums.phpfreaks.com/topic/125277-solved-keep-table-layout-when-there-is-a-whitespace/#findComment-647570 Share on other sites More sharing options...
xoligy Posted September 22, 2008 Author Share Posted September 22, 2008 think i know how to sort it change <tr align=center> to <td align=center height=33% width=33%> Link to comment https://forums.phpfreaks.com/topic/125277-solved-keep-table-layout-when-there-is-a-whitespace/#findComment-647575 Share on other sites More sharing options...
Mr_J Posted September 22, 2008 Share Posted September 22, 2008 change <tr align=center> to <td align=center height=33% width=33%> Did it work? Link to comment https://forums.phpfreaks.com/topic/125277-solved-keep-table-layout-when-there-is-a-whitespace/#findComment-647625 Share on other sites More sharing options...
xoligy Posted September 22, 2008 Author Share Posted September 22, 2008 Cause it worked im ace lol Link to comment https://forums.phpfreaks.com/topic/125277-solved-keep-table-layout-when-there-is-a-whitespace/#findComment-647627 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.