Hey tarmota,
not sure if this is what you are looking for but since I just dealt with a similar issue, this is what I did to get a white transparent background. I put this code into my Custom CSS file:
.page-container {
background-color:rgb(255,255,255);
background-color:rgba(255,255,255,0.3);
}
The rgba gives you transparent colours. You can adjust the degree by changing the last number in the brackets from 0.1 to 1.
Hope this helps!
Thread Starter
lenaz
(@lenaz)
Hello,
actually I didn’t want free customization, I was just wondering which file I had to tackle. I’m still a WP beginner. :o)
Meanwhile I solved the problem by changing the colour of the .head-container and .page-container in the custom css stylesheet.
Thank you all the same for taking the time to answer!