Hi,
is there a way to put a link on my website, such that when a person click on that link, the person will actually get to that page, but its automaticly scrolled down a few pixels down?
well i'm not saying that it has to be in pixels, just kind of measurement, just that its scrolled down already when its clicked..
thx
htmn auto scroll?
Moderator: General Moderators
Copy and paste the page they link their page to so that it is called (WhateverTheNameWas)2.html. Change the original file to:
<html>
<head>
<meta http-equiv="Refresh" content="1;url=(WhateverTheNameWas)2.html#StartHere">
</head>
<body>
Please wait while you are redirected. If you are not automatically redirected, please click <a href="(WhateverTheNameWas)2.html#StartHere">
</body>
</html>
Then in the copy of the original file (the one with the proper content), find the bit where you want it to scroll to, and put <a name="StartHere"> right before the bit where you want it to scroll to.
<html>
<head>
<meta http-equiv="Refresh" content="1;url=(WhateverTheNameWas)2.html#StartHere">
</head>
<body>
Please wait while you are redirected. If you are not automatically redirected, please click <a href="(WhateverTheNameWas)2.html#StartHere">
</body>
</html>
Then in the copy of the original file (the one with the proper content), find the bit where you want it to scroll to, and put <a name="StartHere"> right before the bit where you want it to scroll to.