Menú horizontal deslizante con Scriptaculous – Teleconferencias

Desde que cambié la plantilla del blog han sido muchos quienes me han preguntado cómo poner elmenú horizontal deslizante que hice.
La verdad es que no requiere mucha ciencia, es un simple menú en el cual he usado unatablay el mismo efecto de Scriptaculous que usamos paraexpandir y contraer.


Lo primero que haremos será agregarScriptaculous y Prototype, si ya lo tuvieras no hace falta añadirlo nuevamente. En esta ocasión lo pondremos arriba de la plantilla, esto es para que funcione en Internet Explorer 7, de lo contrario no se deslizará y marcará error.

Así que entra enDiseño | Edición de HTML y después dehead pega esto:
!-- Prototype y Scriptaculous--
script src='http://www.google.com/jsapi'/script
script
google.load("prototype","1.7.0.0");
google.load("scriptaculous", "1.9.0");
/script
!-- Prototype y Scriptaculous--

Luego antes de/b:skin pega los estilos:
/* Menú CdBlger
----------------------------------------------- */
#menu-cdblger{
background: #0B3861;/* Color de fondo */
width: 100%;
height: 24px;
font-weight:bold;
margin: 0px;
padding: 0px;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
#menu-cb {margin-top:0px;}

#menu-cb li {
display: inline;
list-style-type: none;
padding-right: 20px;
}
#menu-cb li a {
color:#FFF;/* Color del texto */
text-decoration: none;
}
#menu-cb li a:hover {
color:#CCC;/* Color del texto al pasar el cursor */
}
.menu-into {
background-color: #0B3861;/* Color de fondo del submenu*/
-webkit-border-bottom-right-radius: 15px;
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-bottomright: 15px;
-moz-border-radius-bottomleft: 15px;
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
}
Y ahora busca esta línea:
div id='content-wrapper'
O si usas una plantilla del Diseñador de plantillas de Blogger entonces busca esta línea:
div class='tabs-outer'

Arriba de cualquiera de esas dos pega esto:
div id='menu-cdblger'
ul id='menu-cb' style='position: relative; padding-top: 5px;'
lia href='URL del blog'Inicio/a/li
lia href='javascript:void(0)' onclick='Effect.toggle("categorias1","slide"); return false'Menú ▼/adiv id='categorias1' style='display: none; position: absolute; _margin-left:-100px; *margin-left:-100px; _margin-top:15px; *margin-top:15px; z-index:8880;'
table border='0' cellspacing='15' class='menu-into'
tr
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 1/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 1/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 1/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 1/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 1/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 1/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 1/a/td
/tr
tr
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 2/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 2/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 2/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 2/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 2/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 2/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 2/a/td
/tr
tr
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 3/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 3/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 3/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 3/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 3/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 3/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 3/a/td
/tr
/table/div/li

lia href='URL del enlace'Pestaña/a/li
lia href='URL del enlace'Pestaña/a/li
lia href='URL del enlace'Pestaña/a/li
lia href='URL del enlace'Pestaña/a/li
lia href='URL del enlace'Pestaña/a/li

/ul/divdiv style='clear: both;'/

Por último agrega la URL de los iconos y enlaces donde se indica.
Encolor verde están señalados los estilos que se pueden cambiar.
Si usas una plantilla del Diseñador de plantillas quizá sea conveniente que elimines todo lo que haya dentro de:
/* Tabs
----------------------------------------------- */

Para agregar más pestañas en el área principal sólo añade otro código como este antes de la última línea:
lia href='URL del enlace'Pestaña/a/li
El submenú que contiene las demás pestañas es una tabla y obviamente también se le pueden agregar más enlaces.

Si quisieras agregar otro submenú sólo añade antes de la última línea un fragmento como este:
lia href='javascript:void(0)' onclick='Effect.toggle("categorias2","slide"); return false'Menú ▼/adiv id='categorias2' style='display: none; position: absolute; _margin-left:-100px; *margin-left:-100px; _margin-top:15px; *margin-top:15px; z-index:8881;'
table border='0' cellspacing='15' class='menu-into'
tr
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 1/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 1/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 1/a/td
/tr
tr
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 2/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 2/a/td
tdimg src='URL del icono'/ a href='URL del enlace'Pestaña Fila 2/a/td
/tr

/table/div/li
Si te fijas este último código es igual al primer submenú (aunque con menos pestañas) lo único que ha cambiado es el doble ID encolor naranja. Si se agregara otro submenú más sólo hay que cambiar el ID en color naranja las 2 veces que se indica, por otro nombre, por ejemplocategorias3

Aunque quizá no es el menú más sofisticado y espectacular, sí es un menú con mucho potencial debido al área del submenú que puede albergar bastantes pestañas de forma organizada, así que si tienes muchos enlaces por agregar esta es una buena opción.

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 JetMundial FootballFIFA World Cup Vestidos de Perros y gatosHosting Dominio web movilSelling annuity payments for cashSelling annuity payments for cash,Sell my structured settlement,Sell structured settlement,Structured settlementStructured settlement companies,Sell my annuity payments lump sum,Car accident lawyer Denver,Accident injury attorneys,Sell my annuity

los angeles motorcycle accident lawyer Online College Course Donating a car in Maryland georgia truck accident lawyer Live casino Online Classes data recovery raid bus accident attorneys Online Stock Trading Online casino Social media management mesothelioma charities boca raton personal injury attorney WEBEX COSTS Donate old cars to charity Sell Annuity Payment mesothelioma lawyer dallas cash out annuity Holland Michigan College car accident lawyer michigan Annuity Settlements Best Seo company wisconsin mesothelioma attorney Hire php developers Casino WordPress theme designers mesothelioma attorney assistance Hire php programmers Donate a Car in Maryland Mobile casino Car Accident Lawyers EMAIL BULK SERVICE benchmark lending Make money online Australia Personal Injury Lawyers selling a structured settlement Online Criminal Justice Degree Cheap car insurance in Virginia Criminal lawyer Casino reviews DUI lawyer NUNAVUT CULTURE colorado mesothelioma lawyers life insurance co lincoln Royalty Free Images Stock Gas/Electricity Car Insurance Quotes PA Paperport promotional code car insurance quotes mn Php programmers for hire accident attorney orange county register free domains Bankruptcy lawyer structured annuity settlement Psd to WordPress city college in miami personal injury lawyer Business management software Seo services domain yahoo Car Donate Dwi lawyer Donate Your Car Sacramento small business administration sba Donate Cars in MA Service business software PhD in counseling education Criminal defense lawyer Php programmers car donate personal injury solicitor CHEAP DOMAIN REGISTRATION HOSTING orlando criminal attorney philadelphia mesothelioma lawyer mesothelioma personal injury lawyers alcohol rehab center in florida Online motor insurance quotes Seo company offshore accident lawyer How to Donate A Car in California Massage school Dallas Texas Hire php developer Life Insurance Co Lincoln Car Insurance Quotes Colorado Computer science classes online business administration masters anti spam appliance Social media strategies New social media platforms Seo companies dallas mesothelioma lawyer FUTURISTIC ARCHITECTURE Best social media platforms for business WordPress hosting Business finance group injury attorney baton rouge Social media platforms for business sell your structured settlement payments Email Bulk Service Custom WordPress theme designer Mortgage Adviser what is structured settlement compare life assurance Donating Used Cars to Charity DONATING USED CARS TO CHARITY Dedicated Hosting Dedicated Server Hosting Online Colleges ONLINECLASSES WordPress themes for designers CAR ACCIDENT LAWYERS dui lawyer scottsdale accident attorney in los angeles Social media tools WORLD TRADE CENTER FOOTAGE Hard drive Data Recovery Services

Share: