The header style in custom.css creates an overlap with the text above it. In some cases, depending on the content, it prevents links from being clickable.
Below is the offending style:
/*Hacky way to make sure anchors are pushed down because of the sticky navbar*/
h1[id], h2[id], h3[id], h4[id], h5[id] {
padding-top: 70px;
margin-top: -70px;
display: inline-block; /* required for webkit browsers */
}
Using the :before tag allows you to adjust the headers height, but the width: 0; keeps links clickable!
The header style in custom.css creates an overlap with the text above it. In some cases, depending on the content, it prevents links from being clickable.
Below is the offending style:
Using the
:before
tag allows you to adjust the headers height, but thewidth: 0;
keeps links clickable!