Menú horizontal con subpestañas y buscador integrado – Abogado



El siguiente menú está hecho únicamente conCSS, es unmenú horizontal con subpestañas, y del lado derecho tiene unbuscador redondeado.
Es un menú práctico para los que no requieren de menús muy complejos o prefieren no usar uno que requiera scripts y/o demasiadas imágenes, además, la instalación y personalización es bastante sencilla, y por si fuera poco es bastante funcional, ya que al tener el buscador integrado puedes tener dos elementos en una misma área.
Puedes verlo funcionando eneste blog de pruebas, si usas el buscador escribe la palabra y presiona ENTER.


ATENCIÓN: Si usas una plantilla hecha a través del Diseñador de plantillas de Blogger primero necesitas seguir los pasos de esta entrada.


Para poner este menú horizontal con submenús en tu blog entra en laEdición HTML de tu plantilla, y antes de/b:skin pega los estilos:
/* Menu horizontal con buscador
----------------------------------------------- */
#menuWrapper {
width:100%;/* Ancho del menú */
height:35px;
padding-left:14px;
background:#333333;/* Color de fondo */
border-radius:20px;/* Bordes redondeados */
}
.menu {
width: 100%;
float: left;
font-family:"Lucida Sans Unicode", "Trebuchet Unicode MS", "Lucida Grande",sans-serif;
font-size:13px;/* Tamaño de la fuente */
font-weight:bold;
}
.menu ul {
float:left;
height:0px;
list-style:none;
margin:0;
padding:0;
border-radius: 0px 0px 20px 20px;/* Bordes redondeados del submenú */
}
.menu li{
float:left;
padding:0px;
}
.menu li a{
background:#333333 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhlHi_p6zo9Q83aYKdFndjUKfm3YS0pSOfNuOFKHyBtHAGce9nVyjO9a5Hf25wYrGsKHKKBAu9wNGtWk5eArTOOrB6qGvcJ2ut5e4eoGzRCHueFK9NncaHptFy5FR22xVYh5kj_cksKMmk/s35/separador.gif) bottom right no-repeat;
color:#cccccc;/* Color de la fuente */
display:block;
font-weight:normal;
line-height:35px;
margin:0px;
padding:0px 25px;/* Espacio entre cada pestaña */
text-align:center;
text-decoration:none;
}
.menu li a:hover, .menu ul li:hover a {
background: #2580a2;/* Color de las pestañas al pasar el cursor */
color:#FFFFFF;/* Color del texto al pasar el cursor */
text-decoration:none;
}
.menu li ul {
background:#333333;/* Color de fondo del submenú */
display:none;
height:auto;
padding:0px;
margin:0px;
position:absolute;
width:200px;/* Ancho del submenú */
z-index:100;
border-top:1px solid #fff;/* Borde superior del submenú */
}
.menu li:hover ul{
display:block;
}
.menu li li {
display:block;
float:none;
margin:0px;
padding:0px;
width:200px;
}
.menu li:hover li a {
background:none;
border-radius: 0px 0px 20px 20px;/* Borde de las subpestañas */
}
.menu li ul a {
display:block;
height:35px;
font-size:12px;
font-style:normal;
margin:0px;
padding:0px 10px 0px 15px;
text-align:left;
}
.menu li ul a:hover, .menu li ul li:hover a{
background:#2580a2;/* Color de las subpestañas al pasar el cursor */
color:#ffffff;
text-decoration:none;
}

#search {
width: 228px;/* Ancho del buscador */
height: 22px;
float: right;
text-align: center;
margin-top: 6px;
margin-right: 6px;
/* Imagen de fondo del buscador */
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitwoLeM5xamvZcEhl0vM1UwXeDK3rJ-mt7C-zWcSxXCHgi4KQ3qpKOEQmFWOJAou117Iwaw8rrRkYkJzwng4tScITxlLZOJV5x09yL1fq4iR211m-Z-BfTdsoxZRa70eE7nv3X6Rs4UiQ/s1600/search-bar.png) no-repeat;
}
#search-box {
margin-top: 3px;
border:0px;
background: transparent;
text-align:center;
}
Luego entra en la sección deDiseño, y en un elementoHTML/Javascript pega la estructura del menú:
div id='menuWrapper'
div class='menu'
ul
lia href="URL del enlace"Pestaña 1/a/li
lia href="#"Pestaña 2/a
ul
lia href="URL del enlace"Pestaña 2.1/a/li
lia href="URL del enlace"Pestaña 2.2/a/li
lia href="URL del enlace"Pestaña 2.3/a/li
lia href="URL del enlace"Pestaña 2.4/a/li
/ul
/li
lia href="#"Pestaña 3/a
ul
lia href="URL del enlace"Pestaña 3.1/a/li
lia href="URL del enlace"Pestaña 3.2/a/li
lia href="URL del enlace"Pestaña 3.3/a/li
lia href="URL del enlace"Pestaña 3.4/a/li
/ul
/li

lia href="#"Pestaña 4/a
ul
lia href="URL del enlace"Pestaña 4.1/a/li
lia href="URL del enlace"Pestaña 4.2/a/li
lia href="URL del enlace"Pestaña 4.3/a/li
lia href="URL del enlace"Pestaña 4.4/a/li
/ul
/li

/ul


form action='/search' id='search' method='get' name='searchForm' style='display:inline;'
input id='search-box' name='q' onblur='if (this.value == "") this.value = "Buscar...";' onfocus='if (this.value == "Buscar...") this.value = "";' size='28' type='text' value='Buscar...'//form

/div/div
Agrega las URLs de los enlaces donde se indica así como el nombre de tus pestañas.
En el primer código puedes ver las áreas que se pueden personalizar tales como el color, etc.
La apariencia redondeada del ancho de todo el menú también es CSS, así que si usas un navegador antiguo no se verán esos bordes.

Si quisieras agregar otra pestaña entonces añade antes del último/ul en color azul una línea como esta:
lia href="URL del enlace"Pestaña 5/a/li
Si quisieras que ésta tenga submenús entonces el código que deberás poner es este:
lia href="#"Pestaña 5/a
ul
lia href="URL del enlace"Pestaña 5.1/a/li
lia href="URL del enlace"Pestaña 5.2/a/li
lia href="URL del enlace"Pestaña 5.3/a/li
lia href="URL del enlace"Pestaña 5.4/a/li
/ul
/li
Sin embargo, se recomienda no poner muchas pestañas, ya que si se excede entonces las pestañas se mostrarán en un segundo renglón.

Y eso es todo, ¿apoco no fue sencillo?

Donate Car To Charity CALIFORNIA DONATE CAR FOR TAX CREDITDONATE CARS IN MADONATE YOUR CAR SACRAMENTOHOW TO DONATE A CAR IN CALIFORNIA DONATE YOUR CAR FOR KIDS,CAR INSURANCE QUOTES COLORADO ,NUNAVUT CULTURE,DAYTON FREIGHT LINESHARDDRIVE DATA RECOVERY SERVICES,DONATE A CAR IN MARYLAND,MOTOR REPLACEMENTS,CHEAP DOMAIN REGISTRATION HOSTING,DONATING A CAR IN MARYLANDMundial Football history FIFA World Cup,smart,huge/big,scienciemedia,blog spot and amazes,unites pero for you gives ,, inspires and future now help and pero mas aya del visita and Mesothelioma law firm CHEAP CAR INSURANCE IN VIRGINIA,Selling annuity payments for cashSelling annuity payments for cash,Sell my structured settlement,Sell structured settlement,Structured settlement,Structured settlement companies,Sell my annuity payments lump sum,Car accident lawyer Denver,Accident injury attorneys,Sell my annuity

MESOTHELIOMA LAW FIRMDONATE CAR TO CHARITY CALIFORNIAHARDDRIVE DATA RECOVERY SERVICESDONATE A CAR IN MARYLAND DONATING A CAR IN MARYLAND,DONATE CARS ILLINOIS,CRIMINAL DEFENSE ATTORNEYS FLORIDA ,BEST CRIMINAL LAWYER IN ARIZONASTRUCTURED ANNUITY SETTLEMENT,ASBESTOS LAWYERS,NUNAVUT CULTURE,DAYTON FREIGHT LINES ,Bextra Bankruptcy Dental Plan Private JetAsi que mejor me fue a un hotel y motel FIFA World Cup Mundial Football New Orleans mesothelioma lawyer y mas que todo que la pase bien en ese hostal y me me fui de viaje a tennessee mesothelioma attorney donde EEUU me pidio la visa pero mejor aun many people in mesothelioma trial lawyers pero me fui a travel Alaska nebraska mesothelioma attorney pero mas aun con mesothelioma attorney nebraska mas siempre fue asi des hace mucho time merlin olsen lawsuit,Selling annuity payments for cash,Sell my structured settlement,Sell structured settlement,Structured settlement,Structured settlement companies,Sell my annuity payments lump sum,Car accident lawyer Denver,Accident injury attorneys,Sell my annuity

EMAIL BULK SERVICE DUI lawyer yahoo web hosting domains yahoo structured settlement purchasers mesotheioma best accident attorneys Psychic for Free CHEAP AUTO INSURANCE IN VA california mesothelioma attorney Mesothelioma Law Firm HARDDRIVE DATA RECOVERY SERVICES Insurance PhD in counseling education compare life assurance DONATING A CAR IN MARYLAND Cheap Auto Insurance in VA PHD IN COUNSELING EDUCATION email bulk service online colledges car crash attorneys Online casino Photo Christmas cards mesothelioma settlements CAR INSURANCE QUOTES MN Donate a Car in Maryland Car Insurance Quotes Colorado what is structured settlement Cheap Car Insurance in Virginia Mortgage Adviser sell structured settlement calculator Dwi lawyer buy structured settlements Tech school Bankruptcy lawyer better conferencing calls chicago hair laser removal Sell Annuity Payment structured settlement blog Car Insurance Quotes MN virtual data rooms georgia truck accident lawyer mesothelioma attorney california motorcycle accident attorney chicago mesotheolima personal injury law firm How to Donate A Car in California Car insurance quotes Colorado Car insurance in South Dakota wisconsin mesothelioma attorney sell annuity payment Casino MOTOR REPLACEMENTS DONATE OLD CARS TO CHARITY adverse credit remortgage Paperport promotional code bus accident attorneys mesothelioma attorney assistance structured settlemen benchmark lending california motorcycle accident lawyer Mobile casino Seo services Online College Course Casino reviews Make money online Australia domain registration yahoo new york mesothelioma law firm structured settlement buyers Auto Accident Attorney Criminal defense lawyer Live casino mesothelioma care LIFE INSURANCE CO LINCOLN Donate Cars Illinois how to donate a car in california Car Donate primary pulmonary hypertension Learning adobe illustrator Dayton Freight Lines insurance medical temporary best mesothelioma lawyers Hire php developers Annuity Settlements Dallas Mesothelioma Attorneys Online Stock Trading quotes car Hire php programmers Social media platforms life insurance quotes LOW CREDIT LINE CREDIT CARDS personal accident attorney Donating Used Cars to Charity Dallas mesothelioma attorneys MASSAGE SCHOOL DALLAS TEXAS Criminal lawyer Criminal defense attorneys Florida Car Accident Lawyers alcohol rehab center in florida ONLINE COLLEDGES BETTER CONFERENCING CALLS HOLLAND MICHIGAN COLLEGE Seo company Best social media platforms for business royalty free images stock Donate old cars to charity Social media tools BEST CRIMINAL LAWYER IN ARIZONA Service business software WEBEX COSTS Social media platforms for business Donate your Car for Money Asbestos Lawyers motorcycle lawyer los angeles best consolidation loan student

Share: