View Full Version : hyperlink images


cute_angel10490
06-01-2003, 09:00 AM
hi, is there anyway to put spaces between hyperlinked images? if yes, is there something wrong with my code?

<a href="alwaysbe.htm"><img src="alwaysbe.jpg" width="130" height="130" alt="always be" border="0" hspace="5"><a href="asianbeauty.htm"><img src="asianbeauty.jpg" width="130" height="130" alt="asian beauty" border="0" hspace="5"><BR>

when I tried this code, the second image was below of the first image, I want the images beside each other but has spaces between them

hope you can help! Thanx!

MaGiCSuN
06-01-2003, 01:22 PM
<a href="alwaysbe.htm"><img src="alwaysbe.jpg" width="130" height="130" alt="always be" border="0"> <a href="asianbeauty.htm"><img src="asianbeauty.jpg" width="130" height="130" alt="asian beauty" border="0"><BR>

try that, just an 'space' between the code should make aspace. A bigger space i would get with a table. That's the most easy way to do it:

<table border=0 width="#" height="#" cellspacing="4">
<tr><td valign="top">link 1 here</td><td valign="top">link 2 here</td></tr></table>

fill in the 'heights' and 'widths' of the table and play some with the cellspacing. it will make the space between the cells 'bigger'

Love,
Mirna

cute_angel10490
06-01-2003, 05:32 PM
thanks :)