Session overlap problem with anchors in html

1

Personal I'm doing a website that has a menu with anchors, all work well minus the anchor of the menu called team note that it goes down right to the session but it overlaps the whole title and in the other sessions it works correctly because it happens?

When I clicked I had to stay like this

Moreisgoinglikethis:

NOTE: Site link at the beginning of the topic

    
asked by anonymous 15.03.2018 / 15:40

1 answer

1

Kirito notice that in all other sessions of your sitem there is a padding:100px but in the Team (parallax) session there is no such padding so it is overlapping .

Just add this in the CSS that will solve:

section#count_parallax {
    padding: 100px 0;
}

See the result in the image, notice the red box:

    
15.03.2018 / 15:49