hard to find a suitable title but her is the problem:
my page: http://shifts.dth-scripts.com/
login using:
U: anon
P: anon
to get the date dropdown box populated i have to set it after the main script has run.
But i need the drop down box at the top of the page, so i have used some css to reposition them
CSS code:
<style type="text/css">
p.pos_bottom
{
position:fixed;
top:50px;
}
p.pos_top
{
position:fixed;
top:0px;
}
</style>
<p class = "pos_bottom">
MAIN TABLE CODE HERE
</P>
<p class="pos_top">
DROP DOWN BOX HERE
</p>
so now they are in the right positions but, the drop down box no longer jumps to the chosen date on the table, like it did when they weren't wrapped in CSS?
Any help would be greatly appreciated.