Código HTML:
Ver original
<html lang="es"> <head> <meta charset="utf-8" /> <link rel="stylesheet" href="estilo.css" /> <link rel="alternate" title="Pozolería RSS" type="application/rss+xml" href="/feed.rss" /> </head> <body> <--ESTE ES MI MENU PRINCIPAL!!--> <nav class="menu"> <ul> </ul> </nav> <div id="main"> <ul class="redes"> </ul> </div> </body> </html>
Y Aqui mi CSS!!:
Código CSS:
Ver original
/* MENU */ nav{ height:auto; /*Junto a overflow: hidden; aplicará a nuestro elemento nav el mismo alto que el más alto de sus elementos hijos */ margin: 0 auto; /* Centro el contenedor */ overflow: hidden; text-align: left; width:100%; /* Defino el ancho de mi página */ background: #0033ff; z-index: 100; position: fixed; } .menu ul{ float: left; list-style-type: none; padding: 0; position: relative; left: 50%; margin-top: 5px; margin-bottom: 5px; } .menu li{ float: left; /* Floto los li para que se dispongan horizontalmente */ position: relative; right: 50%; } .menu li a{ padding: 15px; } .menu ul a{ text-decoration: none; font-size: 14px; color:#ffffff; } .menu ul > li:before{ content: "–"; position: absolute; margin-left:-1px; margin-top: 0px; color: #ffffff; font-size: 15px; } .menu ul > li.sin:before{ color: transparent; } ul.menu a:hover{ color:#fffff; background:red;} /*url("http://i.imgur.com/47R7Nqs.png")no-repeat*/
PORFAVOR AYUDA :(!!!