Quote:
Originally Posted by down.low
All I get out of putting:
Into my footer is a link at the bottom of the page that says "Bottom" and a statement saying "anchor",
Do I need to post this after "<!-- controls -->" for a functional "bottom" button:
And then this one for a "top" button:
After doing this all I get is a "top" that takes me up, & a "bottom" that takes me up. I'm guessing I'm messing up with the anchor for the bottom?? Thanks in advance for any help.
|
Lol nope you got the wrong end of the stick.
Original Code was:
Code:
<a href="#top" onclick="scroll(0,0); return false;">
<img src="expats/images/misc/top.gif" alt="" width="70" height="22" border="0"
style="margin-right:0.4em;"/></a>
Change this to:
Code:
<a href="#bottom" onclick="scroll(0,0); return false;">
<img src="expats/images/misc/top.gif" alt="" width="70" height="22" border="0"
style="margin-right:0.4em;"/></a>
Also create a new gif called bottom.gif and change in the above code to read:
images/misc/bottom.gif
Then in your footer add:
<a name="Bottom">Footer Anchor Point</a>
Footer Anchor Point is just any old text you want , could be just a full stop .
Ste