Find in ipb_styles,
.ipsSideBlock, .general_box {
background: #292929;
border: 1px solid #454545;
margin-bottom: 10px;
}Replace with this one,
.ipsSideBlock, .general_box {
background: rgba(41, 41, 41, 0.49);
border: 1px solid #454545;
margin-bottom: 10px;
}The bottom 2 need replacing because of this,
Find this as well,
.row1, .post_block.row1 {
background-color: #292929;
}Replace with,
.row1, .post_block.row1 {
background-color: rgba(41, 41, 41, 0.49);
}Find this as well,
.row2, .post_block.row2 {
background-color: #292929;
}Replace with,
.row2, .post_block.row2 {
background-color: rgba(41, 41, 41, 0.49);
}