NaN:NaN
NaN:NaN
--:-- / --:--
Newgrounds Background Image Theme

0DayHX just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

2 Html Questions

887 Views | 7 Replies
New Topic Respond to this Topic

2 Html Questions Aug 7, 2004


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.

Response to 2 Html Questions Aug 7, 2004


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.

Response to 2 Html Questions Aug 7, 2004


Thanks, what the hell is a anchor

Response to 2 Html Questions Aug 7, 2004


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.

Response to 2 Html Questions Aug 7, 2004


For the popup script check out this site! ( link )

Response to 2 Html Questions Aug 7, 2004


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.

Response to 2 Html Questions Aug 8, 2004


No, thats a tooltip for images, the guy above me.

For the mouseover thing, thats a javascript event, called onMouseOver (funnily enough)

Response to 2 Html Questions Aug 8, 2004


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.