When I first viewed it in IE it worked, but now it doesn't. Here is part of my code:
Code:
<div class="ddcolortabs style5" id="colortab">
<div id="blockmenu" >
</center>
<ul class="solidblockmenu style5 style37">
<li ><a href="http://www.dynamicdrive.com/" class="left ">Home</a></li>
<li><a href="http://www.dynamicdrive.com/style/" rel="mylife_drop">My Life</a></li>
<li><a href="http://www.dynamicdrive.com/forums/">Photos</a></li>
<li><a href="http://tools.dynamicdrive.com" rel="cis55_drop">CIS 55</a></li>
<li><a href="http://www.javascriptkit.com/" rel="webdesign_drop">Web Design</a></li>
<li><a class="right" href="http://www.cssdrive.com" rel="contactme_drop"> Contact Me</a></li>
</ul>
</center>
</div>
Here is my .css file:
Code:
<style type="text/css">
/* ######### Style for Drop Down Menu ######### */
.dropmenudiv_a{
position:absolute;
top: 0;
border: 0px solid #980E10; /*THEME CHANGE HERE*/
border-top-width: 8px; /*Top border width. Should match height of .ddcolortabsline above*/
border-bottom-width: 0;
font:normal 14px Cambria;
line-height:18px;
z-index:100;
background-color: #FFFFFF;
width: 200px;
visibility: hidden;
}
.dropmenudiv_a a{
width: auto;
display: block;
text-indent: 5px;
border-top: 0 solid #FDE8E9;
border-bottom: 1px solid #FDE8E9; /*THEME CHANGE HERE*/
padding: 2px 0;
text-decoration: none;
color: white;
}
.dropmenudiv_a a.sub_bottom{
width: auto;
display: block;
text-indent: 5px;
border-top: 0 solid #678b3f;
border-bottom: 0px solid #678b3f; /*THEME CHANGE HERE*/
padding: 2px 0;
text-decoration: none;
color: white;
background: transparent url(blockactive.gif) bottom left no-repeat;
}
* html .dropmenudiv_a a{ /*IE only hack*/
width: 100%;
}
.dropmenudiv_a a:hover{ /*THEME CHANGE HERE*/
background-color: #8a3c3d;
color: white;
}
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.solidblockmenu{
margin: 0px auto;
padding: 0;
float: right;
font: bold 13px Arial;
text-align: center;
width: 100%;
border: 0px solid #625e00;
border-width: 0px 0;
background: transparent url(blockdefault.gif) center center repeat-x;
}
.solidblockmenu li{
display: inline;
}
.solidblockmenu li a{
float: right;
color: white;
padding: 9px 11px;
text-decoration: none;
border-right: 1px solid white;
}
.solidblockmenu li a:visited{
color: white;
}
#blockmenu a#current{background: transparent url(blockactive.gif) top right no-repeat;}
.solidblockmenu li a:hover, .solidblockmenu li .current{
color: white;
background: transparent url(blockactive.gif) center center repeat-x;
}
.solidblockmenu ul li {
text-align: center;
margin: 0px auto;
}
</style>
Thanks for the suggestion. I must have made an error. I really appreciate your help.
Bookmarks