View Full Version : always table problems -_-;


redwowskybloo
01-18-2003, 06:09 AM
every time i use image mapper i get all these spaces in my tables -_-;; unless my tables are wrong (which they are most of the time) but anyways, is there any other solution? or... can anyone pleeeese fix this for me?? thank yoU~

heres my table code

<table border="0" cellspacing="0" cellpadding="0">
<tr><td><img src="top.jpg"></tr></td>
<tr>
<td>
<img src="left.jpg"><iframe src="inline.html" name="inlineframe" width="245" height="277" style="border: 0 solid #ff33cc" frameborder="0"></iframe><img src="1.jpg"><!-- Created by CoffeeCup Image Mapper++ (www.coffeecup.com) -->
<!-- Beginning of CSIM --><IMG SRC="2.jpg" USEMAP="#2" BORDER=0>
<MAP NAME="2">
<AREA SHAPE=RECT COORDS="45,9,131,31" HREF="me.html" ALT="" OnMouseOut="window.status=''; return true" OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="48,38,127,58" HREF="shoutouts.html" ALT="" OnMouseOut="window.status=''; return true" OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="60,68,115,88" HREF="quotes.html" ALT="" OnMouseOut="window.status=''; return true" OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="60,95,116,115" HREF="poems.html" ALT="" OnMouseOut="window.status=''; return true" OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="62,124,113,144" HREF="links.html" ALT="" OnMouseOut="window.status=''; return true" OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="50,153,127,174" HREF="guest.html" ALT="" OnMouseOut="window.status=''; return true" OnMouseOver="window.status=''; return true">
</MAP>
<!-- End of CSIM --><img src="3.jpg"><img src="4.jpg"><img src="5.jpg"></tr></td>
<tr>
<td>
<img src="bottom.jpg">
</tr>
</td>
</table>


and the site: http://www.red-style.com/junie/

vicious_wy
01-18-2003, 07:11 AM
It could be that you're closing the tags in the wrong order... instead of opening them like

<tr><td>

and closing them like this

</tr></td>

try doing this

<tr><td>whatever</td></tr>

I don't know if that will help, but there it is

redwowskybloo
01-18-2003, 06:06 PM
Originally posted by vicious_wy
It could be that you're closing the tags in the wrong order... instead of opening them like

<tr><td>

and closing them like this

</tr></td>

try doing this

<tr><td>whatever</td></tr>

I don't know if that will help, but there it is

hmm well that didnt do anything, thx for helping anyways =\

epolady
01-18-2003, 09:05 PM
Your problem was is that there was a few extra spaces (space bar hits)..this should work

<table border="0" cellspacing="0" cellpadding="0">
<tr><td><img src="top.jpg"></tr></td>
<tr>
<td>
<img src="left.jpg"><iframe src="inline.html" name="inlineframe" width="245" height="277" style="border: 0 solid

#ff33cc" frameborder="0"></iframe><img src="1.jpg"><IMG SRC="2.jpg" USEMAP="#2" BORDER=0><img

src="3.jpg"><img src="4.jpg"><img src="5.jpg"></tr></td><tr><td><img src="bottom.jpg"></tr></td></table>


<MAP NAME="2">
<AREA SHAPE=RECT COORDS="45,9,131,31" HREF="me.html" ALT="" OnMouseOut="window.status=''; return true"

OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="48,38,127,58" HREF="shoutouts.html" ALT="" OnMouseOut="window.status='';

return true" OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="60,68,115,88" HREF="quotes.html" ALT="" OnMouseOut="window.status=''; return

true" OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="60,95,116,115" HREF="poems.html" ALT="" OnMouseOut="window.status=''; return

true" OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="62,124,113,144" HREF="links.html" ALT="" OnMouseOut="window.status=''; return

true" OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="50,153,127,174" HREF="guest.html" ALT="" OnMouseOut="window.status='';

return true" OnMouseOver="window.status=''; return true">
</MAP>

make sure you remove all unnecessary spaces (space bar hits)

redwowskybloo
01-19-2003, 02:25 AM
Originally posted by epolady
Your problem was is that there was a few extra spaces (space bar hits)..this should work

<table border="0" cellspacing="0" cellpadding="0">
<tr><td><img src="top.jpg"></tr></td>
<tr>
<td>
<img src="left.jpg"><iframe src="inline.html" name="inlineframe" width="245" height="277" style="border: 0 solid

#ff33cc" frameborder="0"></iframe><img src="1.jpg"><IMG SRC="2.jpg" USEMAP="#2" BORDER=0><img

src="3.jpg"><img src="4.jpg"><img src="5.jpg"></tr></td><tr><td><img src="bottom.jpg"></tr></td></table>


<MAP NAME="2">
<AREA SHAPE=RECT COORDS="45,9,131,31" HREF="me.html" ALT="" OnMouseOut="window.status=''; return true"

OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="48,38,127,58" HREF="shoutouts.html" ALT="" OnMouseOut="window.status='';

return true" OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="60,68,115,88" HREF="quotes.html" ALT="" OnMouseOut="window.status=''; return

true" OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="60,95,116,115" HREF="poems.html" ALT="" OnMouseOut="window.status=''; return

true" OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="62,124,113,144" HREF="links.html" ALT="" OnMouseOut="window.status=''; return

true" OnMouseOver="window.status=''; return true">
<AREA SHAPE=RECT COORDS="50,153,127,174" HREF="guest.html" ALT="" OnMouseOut="window.status='';

return true" OnMouseOver="window.status=''; return true">
</MAP>

make sure you remove all unnecessary spaces (space bar hits)



OMG THANK YOU SO MUCH!!! *dances around*