1. how do i create one of those buttons that bring me straight to the top of the page?
2. how do i make a mouse over comment thing for example.
LINK HERE. and when i put my mouse over it a box pops up telling me what it is.
1. how do i create one of those buttons that bring me straight to the top of the page?
2. how do i make a mouse over comment thing for example.
LINK HERE. and when i put my mouse over it a box pops up telling me what it is.
Use google.
Enter
HTML tutorials Anchors
for example :-)
You'll find lots of nice sites. Same with the window. You might want to look at dhtml for that too.
Well, you know
a href="site.html"
and you might have seen
a href="site.html#bottom"
or
a href="#bottom"
this will jump to the bottom anchor.
You can insert a anchor into a page like this
a name="bottom"
and then the site will scroll to that part.
dont forgett the < and >, but the forum parses the a href.
For the mouse over one, I think its just an alt...
a href="URL.html" alt="TEXT"
And for the directing its...
a href="URL.html#top"
and you have to have something thats...
p name="top"
I think that should work.
No, thats a tooltip for images, the guy above me.
For the mouseover thing, thats a javascript event, called onMouseOver (funnily enough)
lol, yeah I forgot, I was just working on an image gallery for my site and I got confused. My bad. Try putting...
onmouseover="TEXT"
in the image tag, and let me know.