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.

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.