View Full Version : Stupid border wont go away >.<


Lemon Squash
02-25-2003, 05:14 PM
Omg i keep getting this border around my (linked) images and its really annoying but i dont see anything with my code to make it happen help me! >.<

Code:

<html>
<head>
<title>Furcadia - Sweet-as-chocolate</title>
</head>
<body>

<div style="position:absolute; left:0px; top:0px; width:187px; height:67px; ">
<img src="Welcomescreen.GIF" width="648" height="507" alt="" />
</div>

<div style="position:absolute; left:0px; top:0px; width:187px; height:67px; "><a href="http://www."><img src="wmessageenter.GIF"></a></div>

</body>
</html>

lovely_sugar102
02-25-2003, 05:24 PM
Here is the code you should use. I made my changes bold:

<html>
<head>
<title>Furcadia - Sweet-as-chocolate</title>
</head>
<body>

<div style="position:absolute; left:0px; top:0px; width:187px; height:67px; ">
<img src="Welcomescreen.GIF" border="0" width="648" height="507" alt="" />
</div>

<div style="position:absolute; left:0px; top:0px; width:187px; height:67px; "><a href="http://www."><img src="wmessageenter.GIF" border="0"></a></div>

</body>
</html>

Lemon Squash
02-25-2003, 05:26 PM
thanxs i forgot about having them in ><