Basically, my navigation bar has an opacity of 0.6 (IE 8 and earlier, 60). However, everything that goes inside that navigation bar also seems to have an opacity of 0.6. This includes my website logo; which I don't want it to have any opacity, I just want it to be normal. How can I make it so that it doesn't have any opacity?
HTML:
<div id="navigation">
<img class="logo" src="/images/logoO.png">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/blog">Latest News</a></li>
<li><a href="/forums">Forum Boards</a></li>
<li><a href="/report">Report A Bug</a></li>
<li><a href="/disclaimer">Disclaimer</a></li>
</ul>
</div>
CSS:
#navigation {
opacity: 0.6;
filter:alpha(opacity=60); /* For IE8 and earlier */
background: #000000;
width: 100%;
height: 75px;
}
ul {
display: inline;
position: absolute;
list-style-type: none;
}
li {
display: inline-block;
}
a {
color: #DCDCDC;
font-family: PT Sans, Futura, Summer Jams, sans-seriff, Arial;
font-weight: normal;
}
a:hover {
color: #FFF;
}
#navigation > ul > li > a {
-webkit-transition: color .15s;
-moz-transition: color .15s;
-o-transition: color .15s;
transition: color .15s;
}
a:active {
text-decoration: none;
}
a:link {
text-decoration: none;
}
Any ideas on how to fix this, if possible? I've asked a few friends, and they said they don't know how to, or else it is not possible.