View Full Version : hyperlinks and spaces for images


the_one
07-19-2003, 02:43 AM
I really need help. I’ve been trying to figure it out, but I can’t. I want to hyperlink my images and I want to add spaces between all of them, too (at the same time). I used the codes at lissa explains it all (using my info in place of the bolded words):

<img src="cat.gif" hspace="15 ">

and


<a href="address you want image to click to"><img src="your file name.gif(or jpg)" border="0"></a>

but it doesn’t work. I’m so confused.

pb&j
07-19-2003, 02:53 AM
i am presuming you are trying to create extra "horizontal" space...

<a href="somepage.html">
<img src="filename.gif" border="0" hspace="15">
</a>
<a href="somepage2.html">
<img src="filename2.gif" border="0" hspace="15">
</a>

or you can also use a "table" or "css positioning" to have more control over your placements.

the_one
07-19-2003, 03:08 AM
Thanks! That helped alot!