I'm having a little difficulty.
I have a menu in html and css and I want to put it as follows.
Text - text - Logo - text - text
Html:
<div id="nav">
<ul>
<li><span class="Email" ></span><a href="#"> EMail </a></li>
<li><span class="Contactos" ></span><a href="#"> Contactos </a></li>
<li><a href="#"> Multimedia </a></li>
<li><a href="#"> Documentos </a></li>
</ul>
</div>
CSS:
#nav { Width: 100%; background:#CCC; Margin:0px; Float:left;}
#nav ul { margin: 0; padding: 0; list-style: none; width:100%; float:left; }
#nav ul li { float: left; Font: 16px arial; }
#nav ul li a { color:#888; text-decoration:none; padding:20px; display:block; }
#nav ul li:hover {background: #666}
#nav ul li .Email { background: url(image/1-email.png) no-repeat center; float: left; width: 100%; padding: 30px 0; margin-bottom: 15px; }
#nav ul li .Contactos { background: url(image/2-contactos.png) no-repeat center; float: left; width: 100%; padding: 30px 0; margin-bottom: 15px; }
#nav ul li .Multimedia { background: url(); float: left; width: 100%; }
#nav ul li .Documentos { background: url(); float: left; width: 100%; }
How can I put the Multimedia and Documents text to the right side because I need space between the texts to be placed soon.