Please check the below code:-
I am trying to change the opacity of the main container but it is reflecting on content also. Please suggest any solution that applies only on main container background. Thanks in advance.
- Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
.container_channel{
margin:0 0 20px 0;
padding:0px;
font: normal 11px Verdana, Arial, Helvetica, sans-serif;
color: #2e4e5d; /* Replace Color Palettes Title Text color */
width: 288px;
}
.box_top {
height: 25px;
padding: 0 10px 0 10px;
font: bold 13px Verdana, Arial, Helvetica, sans-serif;
color: #2e4e5d; /* Replace Color Palettes Title Text color */
border-bottom:1px solid #cdcdcd;
margin:0 0 10px -10px;
}
.box_mid {
background: #ff0000; /* Replace Color Palettes Background color */
padding: 10px 0px 10px 10px;
border:1px solid #cdcdcd;
opacity:.50;
filter: alpha(opacity=40); /* Change Pallete Wrapper Opacity */
-moz-opacity: 0.4; /* Change Pallete Wrapper Opacity */
}
.box_mid ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.box_mid li {
list-style-type: none;
margin: 0;
padding: 0;
}
.box_mid li a {
color: #2f4f5e;
text-decoration: none;
}
.box_mid li a:hover {
color: #2f4f5e;
text-decoration: underline;
}
.box_mid .thumb {
border: 1px solid #90918f;
padding: 2px;
margin: 0 10px 0 0;
}
.box_mid .desc {
width: 158px;
}
.box_mid .desc span {
color: #999999;
}
.box_mid img {
vertical-align: middle;
}
.width02{
width: 625px;
_width: 630px;
}
.profile_img {
margin: 0 25px 0 0;
width: 124px;
}
.profile_img img {
border:1px solid #999999;
padding: 2px;
margin-bottom:10px;
}
</style>
</head>
<body>
<!-- container channel starts here -->
<div class="container_channel">
<div class="box_mid">
<div>
<div class="box_top">Nitesh Profile</div>
<div class="desc fl">Nitesh<br />
Joined: <span>April 06, 2009</span> <br />
Last Sign In: <span>21 hours ago</span> <br />
Videos Watched: <span>149</span> <br />
View Video : <span>9</span> <br />
Age: <span>29</span> <br />
Country: <span>India</span></div>
<div class="cl"></div>
<p>lol omg so damn adorable..!!! i love the
expression on da LITTLE zoozoo chooo chweeeeetttttt nd jus lissen 2 da popping sounds wen da zoozoo's turns bak 2 da list.</p>
</div>
</div>
</div>
<!-- container channel ends here -->
</body>
</html>

