Click to See Complete Forum and Search --> : :: Helllllllllllp ::


DMX
09-07-2003, 12:30 AM
I currently have a page on BlackPlanet where its just one main image with links on it (Image Mapping)

Im trying to add a counter to my page. The problem is everytime i place it in the HTML...it never shows up.

Here is a link to the site...

http://members.blackplanet.com/FrontMeABrick/

Here is the HTML of the page

<div style="position:absolute;top:0px;left:0px;width:1124px;height:890px;background:#FFFFFF"> </div>
<IMG NAME="frontlayout0" SRC="http://64.239.17.24/member/FrontMeAbrick/frontlayout.jpg" style="position:absolute;top:0px;left:0px" WIDTH="1024" HEIGHT="768" BORDER="0" USEMAP="#frontlayout">

<MAP NAME="frontlayout">
<AREA SHAPE="rect" COORDS="257,368,432,418" HREF="http://notes.blackplanet.com/compose_note.html?new_to_line=FrontMeABrick">
<AREA SHAPE="rect" COORDS="246,16,418,62" <a target="_blank"HREF="http://home.comcast.net/~bcooke14/intro.htm"></a>
<AREA SHAPE="rect" COORDS="246,74,437,124" <a target="_blank"HREF="http://home.comcast.net/~bcooke14/_vitals_.htm"></a>
<AREA SHAPE="rect" COORDS="258,138,574,184" <a target="_blank"HREF="http://home.comcast.net/~bcooke14/_my_purpose_.htm"></a>
<AREA SHAPE="rect" COORDS="236,184,470,234" <a target="_blank"HREF="http://home.comcast.net/~bcooke14/_visuals_.htm"></a>
<AREA SHAPE="rect" COORDS="234,248,500,296" <a target="_blank"HREF="http://home.comcast.net/~bcooke14/_peoples_.htm"></a>
<AREA SHAPE="rect" COORDS="242,300,429,354" <a target="_blank"HREF="http://home.comcast.net/~bcooke14/_outro_.htm"></a>
</MAP>
<!-- BEGIN FASTCOUNTER CODE -->
<a href="http://member.bcentral.com/cgi-bin/fc/fastcounter-login?3285305" target="_top">
<img border="0" src="http://fastcounter.bcentral.com/fastcounter?3285305+6570617"></a>
<!-- END FASTCOUNTER CODE -->
<br>
<!-- BEGIN FASTCOUNTER LINK -->
<font face="arial" size="1">
<a href="http://fastcounter.bcentral.com/fc-join" target="_top">FastCounter by bCentral</a></font><br>
<!-- END FASTCOUNTER LINK -->
<style>body {border : Red double 5; }</style>
<div style="background : ; position:absolute; top:0; left:132; width:500; height:60; ;z-index:50;color:Black; font:normal medium arial; font-style:normal; font-variant:normal"><marquee direction="RIGHT" scrolldelay="200" scrollamount="10" height="0"></marquee></div>
<bgsound src="http://home.comcast.net/~bcooke14/amihigh.wma" loop="-1">
<style>body {scrollbar-3d-light-color:Black; scrollbar-arrow-color:White; scrollbar-base-color:Black; scrollbar-dark-shadow-color:Black; scrollbar-face-color:Red; scrollbar-highlight-color:Black; scrollbar-shadow-color:Red; }</style>
<div style="position:absolute;top:0px;left:0px;height:0px;width:0px;text-align:left;overflow:auto"><table><tr><td><table><tr><td><font>


And here is the HTML of the page counter im trying to implement...


<!-- BEGIN FASTCOUNTER CODE -->
<a href="http://member.bcentral.com/cgi-bin/fc/fastcounter-login?3285305" target="_top">
<img border="0" src="http://fastcounter.bcentral.com/fastcounter?3285305+6570617"></a>
<!-- END FASTCOUNTER CODE -->


Can someone please help me?

PeOfEo
09-07-2003, 12:39 AM
Seems more like a problem with the counter then your code, I have no idea why it would not work. How about this paste the counter code onto another page just a basic html page
<html>
<head>
</head>
<body>
counter crap
</body>
</html>
and then see if it works.

DMX
09-07-2003, 12:42 AM
:( IT worked on another page

PeOfEo
09-07-2003, 12:57 AM
try in the top div
<div style=" position:absolute;top:0px;left:0px;width:1124px;he
ight:890px;background:#FFFFFF z-index:-1;"> </div>
z-index:-1 maybe that div is over the link so it is no longer visible. If this doesnt work, Ill think of something else tomorrow afternoon when I check the forum.

DMX
09-07-2003, 01:24 AM
didnt work

GavinPearce
09-07-2003, 06:55 AM
One mistake in your coding I noticed, not sure if this is why but on you area tags the first one looks like this:


<AREA SHAPE="rect" COORDS="257,368,432,418" HREF="http://notes.blackplanet.com/compose_note.html?new_to_line=FrontMeABrick">


The rest look like this


<AREA SHAPE="rect" COORDS="246,16,418,62" <a target="_blank"HREF="http://home.comcast.net/~bcooke14/intro.htm"></a>


On the first you just add a HREF property to the area tag. On the rest you didnt close the area tag but started a <a href tag which is invalid because the area tag hasn't yet been closed with a >.


A few other mistakes also, but none that I think will matter.