I am currently working on a test page located at this link.
As you scroll down the page, you will notice that the logo remains fixed in the background while an area I have painted purple scrolls over it. I chose to make this area purple temporarily for visibility.
My goal is to create a partially transparent effect on the purple area so that the background logo shows through as I scroll, resembling a semi-transparent glass. The color I have used is (255, 0, 255, 0.6) and it is defined in the secundario.css
styles like so:
body.index #main {
padding-top: 5em;
background-color: rgba(255, 0, 255, 0.6);
}
No matter what I try, I can't seem to achieve the desired transparency on the purple area. It remains opaque.
If anyone has any suggestions or ideas, I would greatly appreciate it. Thank you in advance!