Forum Moderators: open
best I can find out there are some javascript menus that kind of float at the bottom of the page (they fly around basically trying to keep up)
Is there a way to do this without resorting to frames? Their newsticker is quite obviously using frames (look at the scrollbar, it's shorter than it should be)
thanks,
-JL
Good luck. It sounds hard to me.
I know dreamweaver says something about converting tables into layers but not much beyond that.
I hand code all my html (just like how dreamweaver works) and I'm just figuring out how to transition from a tables based layout to a completely css based layout.
I'd like to be able to do this without frames (cause they suck) and preferrably without javascript (IIRC about 1/3 of my visitors don't have it enabled)
thanks again for the suggestion
-JL
body{height:100%;}
#botDiv{position:absolute;height:200px;bottom:0;}
You might also wish to check out this thread: [webmasterworld.com...]
Thanks for the link, I think I can make that work
<style type="text/css">
#FixedImg /* Give this rule to the world */
{
POSITION: fixed; TOP: 100px; LEFT: 100px;
}
* html #FixedImg /* Override above rule for IE */
{
POSITION: absolute; TOP: expression(offsetParent.scrollTop + 100); LEFT: expression(offsetParent.scrollLeft + 100);
}
</style>
works in IE (6 at least, don't know about others) with a little jitter on scroll and is solid in firefox/mozilla
now I just need to make it stick to the bottom of the screen... too tired to play with it now but i think this is the solution.
Thanks again for your help
-JL