Superimpose one layer over another

0

I need to solve this problem. I have tried some z-index but I do not achieve the result. The problem is that I have a first section that should be above (partially) the one that comes next. To the second section I put a z-index negative and visually; According to the design, I have achieved what I want, but I can not access the content of that section, because it is below the entire previous layer. As I said already, I've tried z-index but I can not fix it.

You can see it here link . The elements of the "Views" section have links, but they are impossible to reach, and it does not work to give them a positive z-index.

Thanks in advance for any help.

Greetings.

    
asked by Roger TM 13.01.2018 в 18:10
source

1 answer

0

from what I saw in the link, you still have not been able to solve it. The problem is that when you use the z-index property, the elements must be positioned .

I have modified the code of your website by console and it worked, what I did was the following:

.inner-main{
  position: relative;
  z-index: 10;
}

I hope you serve, greetings.

    
answered by 16.01.2018 в 03:11