When viewing my site from the my main index or archives pages, the tags link is not clickable.
However it is clickable in the single entry view.
The code for the link is:
Tags:
Any ideas what the problem might be?
Thanks!
Reported on Movable Type 4.25
Or rather:
<mt:EntryIfTagged> <div class="entry-tags"> <h4>Tags<span class="delimiter">:</span></h4> <ul> <li><mt:EntryTags glue='<span class="delimiter">,</span></li> <li>'><a href="javascript:void(0)" onclick="location.href='<$mt:TagSearchLink encode_js="1"$>';return false;" rel="tag"><$mt:TagName$></a></mt:EntryTags></li> </ul> </div> </mt:EntryIfTagged>What is the URL of your site?
http://blog.wellsfargo.com/ceo/
Tracey,
The problem you're having is that the form with the name "comments_form" is overwriting some of the tag(s) space and thus the link doesn't work as intended.
What you should do is to put set a margin-top of 16 pixels to that form.
You could for instance replace:
name="comments_form">
with:
name="comments_form" style="margin: 16px 0 0 0;">
or
name="comments_form" style="margin-top: 16px;">
Enjoy,
Mihai
That was exactly the problem, thank you!
You're welcome Tracey!