I changed the background opacity of my jumbotron, but it also changed the opacity of the text within it. I can't figure out a way to change the text back to it's original non-opaque state but leave the background. I think it might be an inheritance problem but not too sure.
Here's my code,
html
<div class="jumbotron">
<div class="cover-container">
<h1 class="cover-heading">Title text.</h1><br />
<p class="lead">Welcome text.</p>
</div>
</div>
css
.jumbotron {
opacity: 0.6;
}
If I haven't included enough of my code I'll post more, thanks for any help!