I've figured out how to use the HTML Insert to get a "To Top" and "Back" button to remain in a fixed position on screen while a user scrolls up or down. Here's the code so folks can understand what I'm getting at:
Code:
<a style="display:scroll;position:fixed;bottom:5px;right:5px;" href="#" title="To Top">To Top</a>
<a style="display:scroll;position:fixed;top:120px;right:20px; href="#"
<input type=button value="Back" onClick="history.go(-1)"></a>
Is there a technique to have the same effect with the header and sidebars, that is the centre content could be scrolled up or down, but the header and sidebars (and ideally the footer) would remain fixed on screen.
I understand this is normally done with iFrames, but I'm thinking that if it works for a button, why not a larger element?