Forum Moderators: coopster

Message Too Old, No Replies

Pagination tables and table borders

         

malcolmcroucher

5:09 pm on Oct 28, 2008 (gmt 0)

10+ Year Member



Hi ,

I got my pagination working nicely but now i have a problem

i got a loop with creating three rows and would like to border the three rows to look like one

<table border="1">
While (xyz)
{
<tr><td></td> </tr>
<tr><td></td> </tr>
<tr><td></td> </tr>
}
</table>

any suggestions ?

eelixduppy

5:14 pm on Oct 28, 2008 (gmt 0)



Why don't you just make it one?

acemaster

5:20 pm on Oct 28, 2008 (gmt 0)

10+ Year Member



<table style='border:1px solid black;'>

This creates a border around the entire table, if you have more than just those 3 rows in the table, you will have to go row by row adding border-right,border-left,border-top,border-bottom where it is needed.

malcolmcroucher

7:13 am on Oct 29, 2008 (gmt 0)

10+ Year Member



The reason i dont want to make it one as i has different size images , text ect which i need the table for positioning ? Is there a better way ?

Regards

Malcolm