I’m going nuts here…
At the top of a page, I’ve got a subnav that links to anchor ids in the same page. But, for whatever reason, when I click on a link (e.g., #fiction”), it doesn’t take me all the way down to the anchor (i.e., <h3 id=“fiction”>Fiction Prize</h3>)—in some cases, it’s not even close. It works in IE6 and 7, but not in FF or Safari. Any ideas?
Here’s my subnav:
<a href="#fiction">Fiction</a> | <a href="#non-fiction">Non-Fiction</a> | <a href="#poetry">Poetry</a>
And here’s a stripped down snippet of my template:
{exp:weblog:entries weblog="submissions" status="winner|shortlisted" category="10" sort="asc" orderby="url_title" search:book_prize_year="{segment_2}"}
{if count == "1"}<h3 id="fiction">Fiction Prize</h3>{/if}
<div class="entry">
{body}
</div>
{/exp:weblog:entries}
{exp:weblog:entries weblog="submissions" status="winner|shortlisted" category="11" sort="asc" orderby="url_title" search:book_prize_year="{segment_2}"}
{if count == "1"}<h3 id="non-fiction">Non-Fiction Prize</h3>{/if}
<div class="entry">
{body}
</div>
{/exp:weblog:entries}