Hide info bars in fullscreen

Is there a way to hide the info bars at the top and bottom of the screen when viewing an image in fullscreen mode?

https://docs.stashapp.cc/themes/custom-css-snippets/#hide-the-lightbox-header-and-footer

/* [Gallery tab] Hides the lightbox header and footer to make the image area larger. Mouse reveals them as an overlay to the image*/

.Lightbox-header,
.Lightbox-footer{
z-index:9999;
position:absolute;
width:100%;
opacity:0;
background-color:#0008;
transition: opacity 0.5s ease;
}

.Lightbox-footer{
bottom:0;}

.Lightbox-navbutton{
opacity:0;
transition: opacity 0.5s ease;
}


.Lightbox-navbutton:hover,
.Lightbox-header:hover,
.Lightbox-footer:hover{
opacity:1;
}

That was incredibly fast. thanks!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.