badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Links to anchors goes too far

#88762

Hi David Humphreys,

Yes the Linked section will goes at the top of the screen, like you said the linked section is override by the Navbar. For the solution. If you are familiar with HTML language then you can follow the below process.

Step 1- For the Target Section add class="target-parent" and shift the linked id to inside target-parent element with <span id="(link)" class="linked-target"></span>.

In your case the Code should look like this

<p class="target-parent">
	<span id="unlike" class="linked-target"></span>
	Unlike fledglings, if a nestling ............
</p>

Step-2. Go to ‘Appearance > Customize > Additional CSS’ then paste the below Custom CSS code.

.target-parent {
	position: relative;
}
.linked-target {
	position: absolute;
	top: -150px;
	left: 0;
}

Here (top: -150px) property is determined for top spacing so you can update the top property to any according as you desired.

Now you can follow only Step 1 process to apply on others pages links as well.

Thanks