G
Gwayn
I need help again
In a navbar appears a line under each list element [list of imgs], in the
css you can put padding-bottom: 0px; margin-bottom: 0px; border-bottom:
none; everywhere but the space under the list element dont go away...
Well, easier to copy here the code... someone knows what's the right
parameter to change?
Thx ^^
______________
CSS:
______________
#navcontainer
{
margin-top: 4em;
float: left;
background-color: green;
padding-bottom: 0em;
margin-bottom: 0px;
border-bottom: none;
}
#navlist
{
padding: 0 0px 0px;
margin-left: 0;
font: bold 12px Verdana, sans-serif;
background-color: black;
width: 8.50em;
height: 16em;
padding-bottom: 0px;
margin-bottom: 0px;
border-bottom: none;
}
#navlist li
{
list-style: none;
margin: 0px;
text-align: left;
background-color: yellow;
text-align:right;
height:34px;
}
#navlist li a
{
display:block;
background-color: blue;
padding: 0.0em 0.0em 0.0em 1.0em;
border-right: 0.70em solid red;
}
______________
HTML:
______________
<div id="navcontainer">
<ul id="navlist">
<li><a href="#"><img src="img/bDisclaimer.gif" alt="Disclaimer"
border="0" /></a></li>
<li><a href="#"><img src="img/bRead.gif" alt="Read Online"
border="0" /></a></li>
</ul>
</div>
In a navbar appears a line under each list element [list of imgs], in the
css you can put padding-bottom: 0px; margin-bottom: 0px; border-bottom:
none; everywhere but the space under the list element dont go away...
Well, easier to copy here the code... someone knows what's the right
parameter to change?
Thx ^^
______________
CSS:
______________
#navcontainer
{
margin-top: 4em;
float: left;
background-color: green;
padding-bottom: 0em;
margin-bottom: 0px;
border-bottom: none;
}
#navlist
{
padding: 0 0px 0px;
margin-left: 0;
font: bold 12px Verdana, sans-serif;
background-color: black;
width: 8.50em;
height: 16em;
padding-bottom: 0px;
margin-bottom: 0px;
border-bottom: none;
}
#navlist li
{
list-style: none;
margin: 0px;
text-align: left;
background-color: yellow;
text-align:right;
height:34px;
}
#navlist li a
{
display:block;
background-color: blue;
padding: 0.0em 0.0em 0.0em 1.0em;
border-right: 0.70em solid red;
}
______________
HTML:
______________
<div id="navcontainer">
<ul id="navlist">
<li><a href="#"><img src="img/bDisclaimer.gif" alt="Disclaimer"
border="0" /></a></li>
<li><a href="#"><img src="img/bRead.gif" alt="Read Online"
border="0" /></a></li>
</ul>
</div>