Scrolling blocked

0
Hello, I have the following problem, I have a code that is a slide that changes alone, but it was done to run in the background and when you put it on a page, the slide is on the whole screen, you scroll the content but the slide continues behind, I wanted to put it as the background of a div so I can scroll and it goes up and not get behind the other content. I've tried in many ways, but since I can not handle too much of a front, so if anyone can help me, I appreciate it. I'll leave the Git link

link

    
asked by anonymous 02.02.2018 / 02:05

1 answer

0

If your slide is fixed in the background, then it is

.slideshow {
    position: fixed;
    z-index: 0;
}

in your CSS.

Remove the position of it and leave the default that is relative and remove the z-index too (default is auto, which is stacking the elements in the order they are declared).

If you need more help, put your code to run so we can see the presentation.

    
02.02.2018 / 02:15