I am seeking help correcting the opacity on a class. Please pardon my not having shown the work for the many approaches I have tried.
Following is a demo on codepen: Codepen Demo
.intro .uk-overlay-primary {
opacity: 0.5;
}
.intro .intro-title {
opacity: 1;
}
The 'intro-title' class is inheriting the opacity of the 'ul-overlay' class. How can I resolve this, forcing the 'intro-title' opacity to be 1, atop of the overlay class?