Functionality:
The current page design includes a translucent background with an opacity of 0.68, and an image placed on top with a full opacity of 1.0. However, the issue arises when the image inherits the transparency property from the background. The goal is to have the image appear solid without any translucency effect.
Solution Sought:
Despite setting the image's opacity to 1.0, it continues to share the translucent property with the background. How can I ensure that the image appears completely solid without displaying the opacity attribute set for the main background?
.BrandMenu {
background-color: #D3D3D3;
filter: alpha(opacity=98);
opacity: 0.98;
}
.BrandDescription {
background-color: #FFFFFF;
filter: alpha(opacity=200);
opacity: 1.0;
}
<div id="Park_BrandDescription" class="BrandMenu" align="center" style="position:absolute; width:1080px; height:1920px; background-repeat: no-repeat; display: none; z-index=9; top:0px; margin:auto;">
<img id="Pa_Description" class="BrandDescription" style="position:absolute; width: 1080px; height:650px; top:500px; background-color: white; left:0px; z-index=99;">
</div>