Source: Anchor link landing in wrong position.
Code qui pose problème:
1 2 3 4 5 6 |
<a name="sponsors"></a> <div class="sponsors"> <div class="sponsors-left"> <h2>Sponsors</h2> <p>Support the lovely folks who support us! Visit their websites, join their mailing lists and peruse their wares. They are all highly-deserving of your custom, and we're thrilled to have each and everyone one of them on-board!</p> </div> |
Suggestion de correction:
I think the problem is resulting from the anchors with no contents that you are using.
Also, it appears that name=
has been deprecated in favor of id= as a fragment identifier in certain elements (including A) which makes a kind of sense as ID attributes are unique whereas NAME attributes are not so guaranteed.
I’d try sticking the fragment identifier in the actual renderable entity such as:
1
<h2 id="sponsors">Sponsors</h2>
and see where that gets you. Incidentally, it looks like a good conference, I hope you get a comp admission.
Réponse de l’OP:
Aha! Got it, worked a charm, thanks mate. Incidentally – I’m one of the conference organiser, no web dev! So not only will I be at the conference, but also drinking whiskey with the speakers 🙂