i am tring to add a background to my navigation.
it is in a UL then IL list.
CSS
#tabs{
margin:auto;
width:683px;
background-image:url(nav.png);
}
#tabs li{
display:inline;
list-style-type: none;
}
#tabs a:link, #tabs a:visited{
float: left;
font-size: 0.70em;
font-family:Arial, Helvetica, sans-serif;
line-height: 20px;
font-weight: bold;
margin:0px 10px 4px 10px;
text-decoration: none;
color: #FCECF8;
}
#tabs a:hover{
color: #FCECF8;
}
#tabs a.active:link, #tabs a.active:visited, #tabs a:hover{
border-bottom: 3px solid #fff;
color: #FCECF8;
}
<div id="tabs">
<ul>
<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">1</a></li>
<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">2</a></li>
<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">3</a></li>
<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">4</a></li>
<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"#" class="active">5</a></li>
<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">6</a></li>
</ul>
<span id="date"><?php echo date("l, jS F Y");?></span>
</div>
it works in IE but not NS or FBI don't know whether it's a bug or not but the background image appears if you add a border to #tabs.no, still not in FB
it is in a UL then IL list.
CSS
#tabs{
margin:auto;
width:683px;
background-image:url(nav.png);
}
#tabs li{
display:inline;
list-style-type: none;
}
#tabs a:link, #tabs a:visited{
float: left;
font-size: 0.70em;
font-family:Arial, Helvetica, sans-serif;
line-height: 20px;
font-weight: bold;
margin:0px 10px 4px 10px;
text-decoration: none;
color: #FCECF8;
}
#tabs a:hover{
color: #FCECF8;
}
#tabs a.active:link, #tabs a.active:visited, #tabs a:hover{
border-bottom: 3px solid #fff;
color: #FCECF8;
}
<div id="tabs">
<ul>
<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">1</a></li>
<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">2</a></li>
<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">3</a></li>
<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">4</a></li>
<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"#" class="active">5</a></li>
<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">6</a></li>
</ul>
<span id="date"><?php echo date("l, jS F Y");?></span>
</div>
it works in IE but not NS or FBI don't know whether it's a bug or not but the background image appears if you add a border to #tabs.no, still not in FB