Comments on In Orbit [F2U] All Comments Start of Thread Parent

In the code, the line for the image overlay is this:

<div class="w-100 h-100 fa-fade" style="background: repeating-linear-gradient(0deg,rgba(0,0,0,0),rgba(0,0,0,0) 2px,#90d5f5 2px,#90d5f5 4px);position:absolute;top:0;left:0;animation-duration:5s;mix-blend-mode:hard-light;opacity:0.75"></div>

In the style attribute, I've highlighted opacity:0.75. This is the code you'll want to change, and it can be a value anywhere from 0 to 1. 0 is fully transparent, 1 is fully opaque. So to decrease the opacity of the bars, you can go with something like this: opacity:0.5.

Hope this helps!

Thank you so much!