Something roughly like this should do then.
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">
#footer {
width:800px;
margin:auto;
border:1px solid #000;
overflow:hidden;
text-align:center;
padding:10px;
}
#footer p {
margin:0;
width:100px;
border:1px solid #000;
}
p.logo1 {float:left;}
p.logo3 {float:right;}
#footer p.logo2 {margin:auto;}
#footer a {
display:block;
background:#fcf;
text-decoration:none;
color:#000;
text-align:center;
}
#footer a:hover {background:red;}
</style>
</head>
<body>
<div id="footer">
<p class="logo1"><a href="#">Logo1 goes here </a></p>
<p class="logo3"><a href="#">Logo3 goes here </a></p>
<p class="logo2"><a href="#">Logo2 goes here </a></p>
</div>
</body>
</html>
Bookmarks