Hi there grassmeyer,
it is not permissible to place block-level elements within inline elements. 
Instead, do it like this...
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
a {
display:block;
width:419px;
height:99px;
background-image:url(http://www.freetoexplorebeauty.co.uk/skins/free2ex/images/logo.gif);
}
</style>
</head>
<body>
<div>
<a href="index.php"></a>
</div>
</body>
</html>
coothead
Bookmarks