Click to See Complete Forum and Search --> : *** is wrong with this?


m316foley
04-15-2001, 03:08 AM
Alright, i used frames for my webpage and I also used something called image mapping, with frontpage. When I load it up, and try to get the imagemapping in the frame to work, it loads the page, but u cant see it anywhere!

------------------
*HAVE A NICE DAY*

Grizzly
04-15-2001, 01:45 PM
What do you mean? Are you not seeing your image-map when you load it up in Frontpage, or when you load it up in a web browser?

Show us your image mapping code, and frameset code and we can help you out Im sure

m316foley
04-15-2001, 03:37 PM
<body bgcolor="#000000" text="#FFFFFF" link="#00FF00" vlink="#00FF00" alink="#00FF00"
topmargin="0" leftmargin="0">

<p><!--webbot bot="ImageMap" rectangle="(46,235) (125, 246) calendar.htm"
rectangle="(46,213) (102, 227) forum" rectangle="(46,193) (115, 205) members.htm"
rectangle="(47,174) (104, 187) join.htm"
rectangle="(47,153) (116, 166) http://www.yahoo.com/ " main" src="images/links.jpg"
border="0" width="130" height="800" --><img src="images/main2.jpg" WIDTH="670"
HEIGHT="800"></p>
</body>
</html>


thats my image mapping code and what happens is the webpage wont show up in the other frame

------------------
*HAVE A NICE DAY*

m316foley
04-15-2001, 03:44 PM
this is the html of the frames page....

<frameset framespacing="0" border="false" frameborder="0" cols="150,0%">
<frame name="links" src="links.htm" scrolling="no" marginwidth="0" marginheight="0"
noresize target="main">
<frame name="main" src="welcome.htm" scrolling="auto" noresize>
<noframes>
<body topmargin="0" leftmargin="0">
<p>This AWESOME page uses something called frames, BUT YOUR SHITTY COMPUTER CAN'T HANDLE
THEM!<br>
Try using Internet Explorer!</p>
</body>
</noframes>
</frameset>
</html>

------------------
*HAVE A NICE DAY*

namgor
04-15-2001, 03:44 PM
you need to set target ???

like < a href = "yahoo.com target= "right" >

where right is your right frame??

------------------
I am crab, scoins is crap.

Milkman
04-15-2001, 04:31 PM
<p><!--webbot bot="ImageMap" rectangle="(46,235) (125, 246) calendar.htm"
rectangle="(46,213) (102, 227) forum" rectangle="(46,193) (115, 205) members.htm"
rectangle="(47,174) (104, 187) join.htm"
rectangle="(47,153) (116, 166) http://www.yahoo.com/ " main" src="images/links.jpg"
border="0" width="130" height="800" --><img src="images/main2.jpg" WIDTH="670"
HEIGHT="800"></p>

-several problems with your image map:
all of that image map in there is set inside a comment (<!--your image map code--> )
also, you need to give the map a name, and call the map inside the img tag:

<map name="map1">
<area coords="46,235,125,246" shape="rect" href="whatever.htm>
</map>

<img src="something.gif" usemap="#map1">


------------------
"There are two steps to success: 1. Never tell everything you know 2. See #1"

m316foley
04-15-2001, 04:40 PM
I have the link tatrgeted look at my yahoo example...and Milkman can you elaborate on that for me?

------------------
*HAVE A NICE DAY*

Milkman
04-15-2001, 04:52 PM
the image map code that you posted above, is inside a comment, which means the browser does not read it. that is the big problem that makes your image map code not work.

------------------
"There are two steps to success: 1. Never tell everything you know 2. See #1"

m316foley
04-15-2001, 05:07 PM
where should I end it?

------------------
*HAVE A NICE DAY*

drdray
04-15-2001, 06:07 PM
Also you got a problem in your frameset tag.
<frameset framespacing="0" border="false" frameborder="0" cols="150,0%">

cols="150,0%" <-- this means you 150% for first frame and 0% for second. You cant use more than 100% unless you are making a page that will scroll sideways and now down as most pages on net.

If you frame to be 150 pixes and not % and other frame to be whatever is left. You should use this cols="150,*" Otherwise, use this cols="100%,*", but it defeats the purpouse of frames because your fist frame will take the whole screen and second frame wont show. http://www.sharkyforums.com/ubb/smile.gif

Hope this helps.

m316foley
04-15-2001, 06:36 PM
OMG, i cant believe I did that. Im soooooo stupid.....thanks soo much. that fixed the problem!

------------------
*HAVE A NICE DAY*