Reputation: 7818
I have some basic hyperlinks (they're tags dynamically generated by Wordpress).
Here's the code that generates them:
<p><?php the_tags('Tags: ', ', ', '<br />'); ?></p>
Everything works in all modern browsers (including IE8). However, in IE7, it looks the same, the link is THERE, with all of the properties EXCEPT the hyperlink functionality...
Any idea why?
Upvotes: 0
Views: 2275
Reputation: 7818
Okay, so I fixed the bug, but I'd still like someone who could possibly explain why this fixed made it work.
What I did was the following.
I wrapped the generated anchor links within a div with class 'tags' Then, in a specific IE7 CSS stylesheet, I gave those links the following styles:
.tags a { zoom: 1; }
Upvotes: 3
Reputation: 2502
I tried the code in WordPress 3.0.1 and found no problem. You may want to install IE Developer Toolbar and check the tags.
Upvotes: 0