View Full Version : need help again


cute_angel10490
07-05-2003, 11:46 AM
hi, here's my code:

<div align="center"><a href="javascript:popImage('http://www.geocities.com/dreams_and_wishes4/myhandwriting.jpg','My handwriting')" style="cursor:w-resize">
<img src="http://www.geocities.com/dreams_and_wishes4/myhandwriting2.jpg" border="0" width="102" height="76>
</a></div>
&nbsp;
<font face="Verdana" size="1" color="#D8415F"><a href="me.htm" style="cursor:w-resize" target="frame3"><- back</a>

how do I get "<-back" on the next line?

Shaneo
07-05-2003, 12:35 PM
Simply put a <br> (break) infront of the <- back or a <p> if u want a break and a space..

<div align="center"><a href=" javascript:popImage('http
://www.geocities.com/dreams_and_wishes4/myhandwriting.jpg','My handwriting')" style="cursor:w-resize">
<img src="http://www.geocities.com/dreams_and_wishes4/myhandwriting2.jpg" border="0" width="102" height="76>
</a></div>

<font face="Verdana" size="1" color="#D8415F"><a href="me.htm" style="cursor:w-resize" target="frame3"><br><- back</a>

christiandude03
07-05-2003, 03:27 PM
Actually, though, I would put the <br> before <font face="Verdana......

My reason: the <- back is inside an <a href tag, which would make the link span two lines, which can sometimes act strange...

Just a thought

Another problem I noticed in the code: you need the closing " on height="76

cute_angel10490
07-05-2003, 07:58 PM
thanks for all the help! :)

I didn't need to put the <br>, I just needed to close the height="76 :D

christiandude03
07-05-2003, 08:17 PM
Great! Glad you were able to get it working!