Slider revolution full screen hero screen is longer by the height of header

Hey there,

The problem is in the title - I’d like to have a full screen hero screen on my index page. There is nothing else on this page but a header with the navbar, so there shouldn’t be a scroll bar in theory… except the hero screen’s size is the actual screen size, and not screen size minus nav bar.

Is there a workaround for this problem?

Thank you for the help!

Hi There,

Thank you for writing in, please add this to Theme Options > CSS

.fullscreen-section {
	height: calc(100vh - 96px);
	overflow-y: hidden;
}

Then add a CLASS fullscreen-section to your section.


Hope it helps,
Cheers!

1 Like

Thank you, that did the trick :slight_smile: I tried just overflow: hidden on its own but didn’t get the right results.

Thanks again!

Glad that we could be of a help :slight_smile:

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