-1

is there a way to use a transparent header using fullPage.js, so I can still see the background-image from the section/slide fullscreen?

Thanks!

Applecow
  • 796
  • 3
  • 13
  • 35

1 Answers1

0

The white border comes from your configuration of the fullpage-plugin. You call a 50px padding on the slider, which results in a 50px white border on the top of your page. To work around this:

.slide { padding: 50px;}

This will give the same padding, but not on your wrapper element, but on the slide element. I updated your fiddle, you can find it here.

Jan_dh
  • 771
  • 6
  • 14