View Full Version : Ok, ANOTHER problem :( what is the code to have a graphic link.


confused james
04-17-2004, 12:59 AM
Im really sorry to have made so many threads (although they have been 1-2 days apart) but can anyone tell me what the code is for a graphic link?

Lemon Squash
04-17-2004, 01:11 AM
http://www.lissaexplains.com/html3.shtml#click

confused james
04-17-2004, 01:20 AM
so how would i position that using css?

confused james
04-17-2004, 01:55 AM
I want to put a graphic link in my menu bar (left column) on http://www.geocities.com/b4igogetmyowndomain//testfile.html

Rosey
04-17-2004, 02:18 AM
You could put in a div or table. You don't have to use css for everything. If you mean where you have the "home" link, I would use a div and you can position that absolutely using css like this

<div style="position:absolute; top: 50px; left: 20px">

<a href="link.html"><img src="image.jpg" border="0"></a>

more links...


</div>

or you could set up another id or class in your css and do

<div class="links">

links...


</div>

confused james
04-17-2004, 03:14 AM
thanks rosey!