Jump to content

creating tables or spacing over like a tab would


Recommended Posts

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 ([email protected])

 

Thanks for reading and helping a newbie out!

 

Sean

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>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.