Plugin Author
malihu
(@malihu)
Hello,
At the moment, in your markup you have the section title (with the id) and the section content separately. Since the title has the id and its height is about 150px, it “leaves” the screen quickly as you’re scrolling down, making the corresponding highlighted link to go off (since the id is no longer visible in the viewport).
In order to have a highlighted link “always on” (accounting for both title and content) you need to wrap each section title and content inside an outer div which will have the id (instead of just title). For example:
<div id="team">
<div class="et_pb_section et_pb_fullwidth_section" /> /* title container */
<div class="et_pb_section" /> /* content container */
</div>