SLIDER REVOLUTION White border on bottom wont go away!

So for the life of me I cant get this WHITE BAR on the bottom of the screen to dissapere mind u all my padding is 0

when i make the slider settings go from “FULL WIDTH” to “FULLSCREEN” the bar goes away but then none of the buttons functionality works

Which buttons don’t function properly? I would have to view the page to inspect it while it was set to fullscreen to be able to see why they don’t work. But then maybe it would be some sort of layer issues.

Maybe at full width the only issue is that your site isn’t going to the full browser height. Maybe you could try adding this to your CSS to fix that:

html {
  height: 100%;
}
body {
  min-height: 100%;
}
1 Like

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