Hi Jörg
It isn't no, but you can always write your own css to do so.
Something along adding below to _sass/_main.scss
.boxHero .feature-content
{
opacity: 0.9;
}
I just tried it, in my opinion it looks a bit odd, but perhaps there is a variation that works better.
Visually I find it annoying because it touches the bottom. If you added bottom margin as well, then it would seem more like a floating transparent block. Just making the whole thing transparent looks like a mistake. And then I would opt for only making the
paper transparent, not the text.
so instead something along
.boxHero .feature-content {
background:
#ffffffee;
border:
1px solid #88888822;
margin-bottom:
2rem;
}
Hope that helps
Best
Morten