Page is a not externally linkable
webprutser - 9:19 pm on Feb 27, 2011 (gmt 0)
I'm still not sure whether there is some communication error. To me, looking at your code, is what you want something quite simple. You want, as far as I can tell, an unordered list with an image before the list-items. I altered the code a bit, simplified it and it results in a list that really (and I had a real good look) is the same in I.E. and Firefox.
This is the code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
body {font:12px Arial, Helvetica, sans-serif; }
a {text-decoration:none;
}
.smallfeed {width:150px; height:29px; position:absolute; top: 10px; left: 200px; border: 0px;}
.box {
list-style-image: url(images/bullet.png);
margin-left: 20px;
padding-left: 0px;
margin-top: 20px;
padding-top:20px;
line-height: 22px;
}
</style>
</head>
<body>
<h2>Top Stories</h2>
<a href="#"><img src="images/button_agenda_wat.png" alt="RSS Feed!" class="smallfeed"></a>
<ul class="box">
<li><a href="#">This is the first LI tag. Some text here to make it into two lines.</a></li>
<li><a href="#">Hello World</a></li>
<li><a href="#">And this is the last LI again, with two lines</a></li>
</ul>
</body>
</html>