I have a problem with aligning something in the bottom right of the browser. The table does go to the bottom right, but when you scroll down the window it stays in its original position untill you resize it!
Is there a way to make it so it always moves to the bottom right of the browser?
Thanks
CSS:
.footer {
position: absolute;
bottom: 0px;
border: 1px dashed #FFFFFF;
background-color: #2B2A29;
text-align: center;
right: 5%;
}
HTML:
<table class="footer">
<tr>
<td>
Blah
</td>
</tr>
</table>Use position:fixed instead, but be aware that it only does "absolute" positioning in IE.Thanks. This does give the effect I want, but this really needs to work in IE as well!
Are there any other ways of doing this so it works in IE too?Originally posted by darkestnight
Thanks. This does give the effect I want, but this really needs to work in IE as well!
Are there any other ways of doing this so it works in IE too?
Not without JavaScript.I know this may not be the forum to ask it, but since we're on the subject, how do you do it with JS?
Edit: Posted in JS forum.Originally posted by darkestnight
I know this may not be the forum to ask it, but since we're on the subject, how do you do it with JS?
Probably something I'd avoid unless either helping someone who already had started on the script or getting paid to do it for them. That's how I am, though.
Is there a way to make it so it always moves to the bottom right of the browser?
Thanks
CSS:
.footer {
position: absolute;
bottom: 0px;
border: 1px dashed #FFFFFF;
background-color: #2B2A29;
text-align: center;
right: 5%;
}
HTML:
<table class="footer">
<tr>
<td>
Blah
</td>
</tr>
</table>Use position:fixed instead, but be aware that it only does "absolute" positioning in IE.Thanks. This does give the effect I want, but this really needs to work in IE as well!
Are there any other ways of doing this so it works in IE too?Originally posted by darkestnight
Thanks. This does give the effect I want, but this really needs to work in IE as well!
Are there any other ways of doing this so it works in IE too?
Not without JavaScript.I know this may not be the forum to ask it, but since we're on the subject, how do you do it with JS?
Edit: Posted in JS forum.Originally posted by darkestnight
I know this may not be the forum to ask it, but since we're on the subject, how do you do it with JS?
Probably something I'd avoid unless either helping someone who already had started on the script or getting paid to do it for them. That's how I am, though.