ArcheXerxes
Member
I am trying to get just the image inside of the container(i believe this what the box is). When I set the container 'Opacity: 0.2;' , it makes everything inside the container transparent to that level. I want just the background image to come up as transparent instead of all the words inside of it. I realize I can just edit the image but I am trying to learn good coding to achieve this instead of constantly editing photos.
Here is my code:
Regular Tempalte Page <--- whats the proper name for this page in xenforo
Css Page for Template
What am I doing wrong and how do I fix it
Here is my code:
Regular Tempalte Page <--- whats the proper name for this page in xenforo
HTML:
<div class="containerSidebar">
<div class="backgroundEdit">
<div class="Text"> Text Example</div>
<div class="Text2">Text Example 2</div>
</div>
</div>
Css Page for Template
HTML:
.backgroundEdit
{
background-image: url(*imagelink to my server*) ;
background-size: cover;
opacity: 0.2;
}
What am I doing wrong and how do I fix it