Page 1 of 1

html help

PostedWed Sep 14, 2005 6:56 am
by Chaar Darkstalker
Is any1 here good at html? Im having problems with a imagemap where the links refuse to work, the "hand" shows up when mousing over the button but when clicking nothing happens :( :P here is the website
http://www.geocities.com/briarpcom/

and here is the html code

i had to remove the < in the img src="" row or it would just show a pic

<HTML>
<HEAD>
<TITLE>Bria roleplaying community</TITLE>
</HEAD>


<body background="bground1.jpg" BORDER="0">

IMG SRC="uglylogo.jpg" BORDER="0" USEMAP="#">
</IMG><MAP NAME="briarpcom">
<AREA SHAPE="RECT" COORDS="441,17,635,57" HREF="info.htm">
<AREA SHAPE="RECT" COORDS="446,62,630,95" HREF="forum.htm">
<AREA SHAPE="RECT" COORDS="453,104,625,143" HREF="staff.htm">
<AREA SHAPE="RECT" COORDS="439,149,637,182" HREF="dloads.htm">
<AREA SHAPE="RECT" COORDS="456,194,628,226" HREF="links.htm">
</MAP>

</body>
</html>

PostedWed Sep 14, 2005 7:00 am
by Seret Sajet
The problem I see is in the <IMG> tag.

You are referencing the Image Map but you didn't include the name of the map after the #.
The line should read...

<IMG SRC="uglylogo.jpg" BORDER="0" USEMAP="#briarpcom">

Also there is no closing tag for IMGs, its not needed. Just remove the </IMG>

One last thing, and this is probably just a cut n' paste error but your IMG tag is missing the beginning <

Hope that helps.

(Also moved this to Jibber Jabber as it is not SWG related)

PostedWed Sep 14, 2005 7:05 am
by Chaar Darkstalker
oh lol sorry

You mean the < in the row img src="uglylogo.jpg".......?
i said above i had to remove it or it tried to show a image =)

PostedWed Sep 14, 2005 7:08 am
by Chaar Darkstalker
weee it worked, thnx a bunch n sorry for the missplaced thread :S :P :-(

PostedWed Sep 14, 2005 7:11 am
by Seret Sajet
Ah sorry I missed that line.

Don't forget to nix that </IMG> tag. I edited into my original post.