Hola gente,
Tengo un problema con el menú de mi sitio en Wordpress... porque no me aparece en algunas secciones donde está.
Por ejemplo, si estoy en HOME o CONTACTO, la sección en el menú me aparece en blanco, pero si cliqueo en PUBLICIDAD no me aparece... com puedo hacer?
Les dejo los códigos y el sitio es
www.lineadetres.com Menu Código PHP:
<div class="firstmenu">
<ul>
<li class="first" <?php if (is_home()) { echo "id=\"firstcurrent\""; } ?>>
<a href="<?php bloginfo('url'); ?>" title="Home">Home</a>
</li>
<li <?php if (is_page('2')) { echo "id=\"current\""; } ?>>
<a href="<?php bloginfo('url'); ?>/publicidad/" title="About">Publicidad</a>
</li>
<li class="last" <?php if (is_page('contact')) { echo " id=\"lastcurrent\""; } ?>>
<a href="<?php bloginfo('url'); ?>/contact/" title="Contact">Contact</a>
</li>
<li class="floatright"><a href="<?php bloginfo('rss2_url'); ?>" title="Subscribe to this site using RSS"><abbr title="Really Simple Syndication">RSS</abbr> Feed</a></li>
</ul>
</div>
CSS Código PHP:
.firstmenu{
float: left;
width: 970px;
background: url(images/bg_firstmenu.jpg) no-repeat;
}
.firstmenu ul{
list-style-type: none;
margin: 0;
padding: 20px 20px 0 20px;
}
.firstmenu ul li{
float: left;
background: url(images/navtab.gif) no-repeat right top;
}
.firstmenu ul li a{
display: block;
padding: 8px 48px 8px 10px;
font-weight: bold;
text-decoration: none;
color: #fff;
}
.firstmenu ul li a:hover{
text-decoration: underline;
}
.firstmenu ul li.first a{
padding: 8px 48px 8px 39px;
background: url(images/navtab_first.gif) no-repeat;
}
.firstmenu ul li.last{
background: url(images/navtab_last.gif) no-repeat right top;
}
.firstmenu ul li.last a{
padding: 8px 39px 8px 10px;
}
.firstmenu ul li#firstcurrent{
background: #fff url(images/navtab_current.gif) no-repeat right top;
}
.firstmenu ul li#firstcurrent a{
background: url(images/navtab_current_first.gif) no-repeat;
color: #000;
}
.firstmenu ul li#current{
margin-left: -38px;
background: #fff url(images/navtab_current.gif) no-repeat right top;
}
.firstmenu ul li#current2{
margin-left: -38px;
background: #fff url(images/navtab_current.gif) no-repeat right top;
}
.firstmenu ul li#current a{
padding: 8px 48px;
background: url(images/navtab_current_left.gif) no-repeat;
color: #000;
}
.firstmenu ul li#current2 a{
padding: 8px 48px;
background: url(images/navtab_current_left.gif) no-repeat;
color: #000;
}
.firstmenu ul li#lastcurrent{
margin-left: -38px;
background: #fff url(images/navtab_current_last.gif) no-repeat right top;
}
.firstmenu ul li#lastcurrent a{
padding: 8px 39px 8px 48px;
background: url(images/navtab_current_left.gif) no-repeat;
color: #000;
}
.firstmenu ul li.floatright{
float: right;
background: url(images/navtab_floatright_a.gif) no-repeat right top;
}
.firstmenu ul li.floatright a{
padding: 8px 39px;
background: url(images/navtab_floatright_b.gif) no-repeat left top;
}
Espero haberme explicado, saludos!