Jump to content

[SOLVED] A table within Scrollbars. alignment problem


Newton

Recommended Posts

I am trying to display a table in a window, works great.  But what I want is to leave the headings on top at all times.  If I put them in there own table the header and detail do not match up.

 

IE:

 

<div> <tr> <td> Name </td>  <td> Address </td> </tr> </div> 

// sql statments

<div class=scroll> <tr> <td> $Name </td>  <td> $Address </td> </tr> </div> 

 

Name    Address

JOHN DOE                    124 MAIN STREET

 

 

if It all in the same table it lines up, but when I scroll down past the first page I loose the headings. 

 

<div> <tr> <td> Name </td>  <td> Address </td> </tr>

// sql statments

<tr> <td> $Name </td>  <td> $Address </td> </tr> </div> 

 

Name                          Address

JOHN DOE                    124 MAIN STREET

 

 

Any suggestions.  I am not using any frames or java script, just basic PHP/HTML.

 

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.