machinna
07-26-2006, 01:39 AM
My Menu in Left side have White-spaces in FireFox Browser. In IE work's perfectly.
My page :
http://www.hollobyte.com.br
My Css :
body {
font: normal 8px arial;
}
ul {
margin: 0;
padding: 0;
list-style: none;
width: 118px; /* Width of Menu Items */
border-bottom: 1px solid #FFFCB7;
clear: both;
overflow: auto;
}
ul li {
position: relative;
overflow: auto;
clear: both;
}
li ul {
position: relative;
left: 0px; /* Set 1px less than menu width */
top: 0;
display: none;
overflow: auto;
clear: both;
}
/* Styles for Menu Items */
ul li a {
display: block;
text-decoration: none;
color: #006600;
background: #FBF000; /* IE6 Bug */
padding: 5px;
border: 1px solid #FFFCB7;
border-bottom: #B9B500;
clear: both;
overflow: auto;
}
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
ul li a:hover { color: #003366; background: #DFD700; } /* Hover Styles */
li ul li a { padding: 1px 3px; } /* Sub Menu Styles */
li:hover ul, li.over ul { display: block; } /* The magic */
My Html for Menu :
<ul id="nav">
<li><p class="disc"><a target="view" href="home.asp">:: Home</a></li>
<li><p class="disc"><a target="view" href="empresa.asp">:: Empresa</a></li>
<li><p class="disc"><a target="view" href="produtos.asp">:: Produtos</a></li>
<li><p class="disc"><a target="view" href="home.asp">:: Promoções</a></li>
<li><p class="disc"><a target="view" href="servicos2.asp">:: Serviços</a></li>
<li><p class="disc"><a target="view" href="Cadastro.asp">:: Cadastro</a></li>
<li><p class="disc"><a target="view" href="contato.asp">:: Contato</a></li>
<li><p class="disc"><a target="view" href="galeria.asp">:: Galeria de Fotos</a></li>
</ul>
What problem ?
My page :
http://www.hollobyte.com.br
My Css :
body {
font: normal 8px arial;
}
ul {
margin: 0;
padding: 0;
list-style: none;
width: 118px; /* Width of Menu Items */
border-bottom: 1px solid #FFFCB7;
clear: both;
overflow: auto;
}
ul li {
position: relative;
overflow: auto;
clear: both;
}
li ul {
position: relative;
left: 0px; /* Set 1px less than menu width */
top: 0;
display: none;
overflow: auto;
clear: both;
}
/* Styles for Menu Items */
ul li a {
display: block;
text-decoration: none;
color: #006600;
background: #FBF000; /* IE6 Bug */
padding: 5px;
border: 1px solid #FFFCB7;
border-bottom: #B9B500;
clear: both;
overflow: auto;
}
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
ul li a:hover { color: #003366; background: #DFD700; } /* Hover Styles */
li ul li a { padding: 1px 3px; } /* Sub Menu Styles */
li:hover ul, li.over ul { display: block; } /* The magic */
My Html for Menu :
<ul id="nav">
<li><p class="disc"><a target="view" href="home.asp">:: Home</a></li>
<li><p class="disc"><a target="view" href="empresa.asp">:: Empresa</a></li>
<li><p class="disc"><a target="view" href="produtos.asp">:: Produtos</a></li>
<li><p class="disc"><a target="view" href="home.asp">:: Promoções</a></li>
<li><p class="disc"><a target="view" href="servicos2.asp">:: Serviços</a></li>
<li><p class="disc"><a target="view" href="Cadastro.asp">:: Cadastro</a></li>
<li><p class="disc"><a target="view" href="contato.asp">:: Contato</a></li>
<li><p class="disc"><a target="view" href="galeria.asp">:: Galeria de Fotos</a></li>
</ul>
What problem ?