Se pega en cualquier Box este menu horizontal
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS Menu Vista</title>
<style type="text/css">
body{
background:#08445A;
}
#menu ul {
padding: 0px;
margin: 0px;
background: url(https://img.webme.com/pic/c/coolplace/button0070.gif) repeat-x;
font-size: 14px;
font-weight: bold;
width: 100%;
float: left;
font-family:"Trebuchet MS", Tahoma, Verdana, Helvetica, Arial;
}
#menu ul li {
display: inline;
}
#menu ul li a:link, #menu ul li a:visited {
background: url(https://img.webme.com/pic/c/coolplace/button0070.gif) left top no-repeat;
color: #6FF;
padding-left:35px;
float: left;
text-decoration: none;
display:block;
margin:0 5px;
}
#menu ul li a span{
padding:5px 35px 5px 0;
line-height:24px;
display:block;
background: url(button.png) right top no-repeat;
}
#menu ul li a:hover, #menu ul li a:active{
color: #FFF;
background: url(https://img.webme.com/pic/c/coolplace/button0071.gif) left bottom no-repeat;
}
#menu ul li a:hover span, #menu ul li a:active span{
background: url(https://img.webme.com/pic/c/coolplace/button0071.gif) right bottom no-repeat;
}
</style>
</head>
<body>
<div id="menu">
<ul>
<li><a href="http://www.Webboto.es.tl"><span>Home</span></a></li>
<li><a href="#"><span>Texto</span></a></li>
<li><a href="#"><span>Texto</span></a></li>
<li><a href="#"><span>Texto</span></a></li>
<li><a href="#"><span>Texto</span></a></li>
</ul> </div></body>
</html>