Forum Moderators: not2easy
and in the css file
#topdiv {
margin-bottom:0px;
}
#bottomdiv {
margin-top:0px;
}
that should generally result in the two div tables touching, one directly below the other. there may be issues with height and width, which can be fixed using the height:; and width:; attributes in the css.
hope i was some help, tell me if not!
James
simply put this can be controlled effectively either by using position:absolute; or setting margins.
in the css,
#one {
margin-left:20px;
}
#two {
margin-left:20px;
}
that should line them up,
also,
#one {
position:absolute;
left:20px;
}
#two {
position absolute;
left:20px;
}
hope that helps