The menu's a tags are inheriting width from the estudiovzb.com/sitb/estilos.css file (line #351):
Code:
li.categorias a, a:visited, a:active {
list-style: none;
width:850px;
text-decoration:none;
color:#000;
}
Which should be:
Code:
li.categorias a, li.categorias a:visited, li.categorias a:active {
list-style: none;
width:850px;
text-decoration:none;
color:#000;
}
And when that's corrected they will inherit width from (line #192):
Code:
li.linksFooterFlecha a, a:visited, a:active {
list-style: none;
width:180px;
text-decoration:none;
color:#999;
}
Which should be:
Code:
li.linksFooterFlecha a, li.linksFooterFlecha a:visited, li.linksFooterFlecha a:active {
list-style: none;
width:180px;
text-decoration:none;
color:#999;
}
And then from (line#141):
Code:
ul.linksFooter a:active, a:visited{
float:left;
width:200px;
font-family:Calibri, "Arial Narrow", "Trebuchet MS", Verdana;
font-size:12px;
color:#999;
line-height:1.5em;
list-style-type:none;
text-decoration:none;
}
Which should be:
Code:
ul.linksFooter a:active, ul.linksFooter a:visited{
float:left;
width:200px;
font-family:Calibri, "Arial Narrow", "Trebuchet MS", Verdana;
font-size:12px;
color:#999;
line-height:1.5em;
list-style-type:none;
text-decoration:none;
}
Make these changes using a text only editor like NotePad.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks