When I have a link that loads a section within the same page, the link will make the section clicked on load at the top of the browser window, I need to somehow add a space/gap of like 100px on top of all these sections that are linked like this.
Any ideas on how to do this?
JavaScript
x
7
1
The link to section
2
<a href="#page">Page</a>
3
4
5
The section
6
<a id="page"></a>
7
Advertisement
Answer
In your css just set the padding-top to 100px (you’ll need some form of CSS selector to target only the ‘correct’ links):
JavaScript
1
4
1
a.someCssClassOrSelector {
2
padding-top: 100px
3
}
4