redskillet Posted December 8, 2005 Share Posted December 8, 2005 Hello. I am new to php and am ready to launch a site. However one page is really bad looking (http://www.epicunion.com/~nowhope/join_schedule.php) I would like it spaced out more to look something like this (table or spaces, just can't get it and help would be wonderful) So instead of leaving it like Pakistan (Karachi, Islamabad, Lahore) February 17 - 27 $2,500 I want it to have a few spaces between the country, date, and price. It would be great if they all lined up some how. I can email the php page to anyone that can help (sean@hulins.com) Thanks for reading and helping a newbie out! Sean Quote Link to comment https://forums.phpfreaks.com/topic/3004-creating-tables-or-spacing-over-like-a-tab-would/ Share on other sites More sharing options...
morpheus.100 Posted December 8, 2005 Share Posted December 8, 2005 Not sure exactly what you mean but to put some distace between words easily without css styles use for extra spaces so <tr> <th width="321" scope="col"> <div align="left">Pakistan ( Karachi, Islamabad, Lahore)</div></th> <th width="125" scope="col"> <div align="left">Feb 17 - 27 </div></th> <th width="121" scope="col"> <div align="left">$2,500 </div></th> </tr> Becomes: <tr> <th width="321" scope="col"> <div align="left">Pakistan ( Karachi Islamabad Lahore)</div></th> <th width="125" scope="col"> <div align="left">Feb 17 - 27 </div></th> <th width="121" scope="col"> <div align="left">$2,500 </div></th> </tr> Quote Link to comment https://forums.phpfreaks.com/topic/3004-creating-tables-or-spacing-over-like-a-tab-would/#findComment-10087 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.