在Chrome,Firefox,Safari中点击文字

时间:2011-09-09 16:27:38

标签: php wordpress

我已将此网站设为www(。)ionisedmesh(。)com并在顶部显示最新的新闻框,但问题是虽然博客帖子标题可在Internet Explorer中点击,但在使用Firefox或Chrome时无法点击它们,我还没有使用Safari进行测试,但我相信如果它在Chrome上不起作用,也不会对它起作用。这是我的代码,任何建议?

<div id="freshlyWrapper">
<div id="freshlyposts">
<?php
$freshlyIonised = new WP_Query();
$freshlyIonised->query('category_name=FreshlyIonised&showposts=6');
while($freshlyIonised->have_posts()):
$freshlyIonised->the_post();    
$title = get_the_title();
if (strlen($title) > 46)
$title = substr( $title, 0 , 46 ) . "..."; // Limits title to 20 characters.
?>  
<div class="freshlyionisedbox"><h3><a style='text-decoration: underline; color: #000;' href="<?php the_permalink(); ?>"><?php echo $title; ?>
</a></h3>
</div>

1 个答案:

答案 0 :(得分:1)

您的HTML没有任何问题。我刚刚使用Safari的Web Inspector检查了您的页面(就像Firebug一样),看起来您的Google Ads DIV和您的Facebook DIV正在用您的头条新闻掩盖div。我删除了这两个,你的标题是可点击的。我认为你需要改变它们的位置,也许是float:right