On a.htm use this as an onload event in the body tag (highlight red):
Code:
<body onload="window.scrollTo(0,300);">
If there isn't enough room at the bottom of the page, you may have to add some line breaks there. If there is room and it is scrolling to the wrong place, play with the value 300 until it suits.
Or, better yet, define a top margin for the page and include its value in the scroll:
Code:
<body style="margin-top:20px;" onload="window.scrollTo(0,320);">
You still need enough room at the bottom of the page to allow it to scroll that far.
Bookmarks