失败日志
-- 对于那些急切等待另一个更新(2012 年 4 月 30 日,下午 3:23)的人,这里是:
我已经设法通过在我的主容器中添加一个最小高度来解决这个问题。这是一个糟糕的解决方案,我讨厌它 - 因为我必须根据内容进行调整。但这是迄今为止我收集到的唯一解决方案。
最后一分钟的提示?...
更新失败。2012 年 4 月 24 日,美国东部标准时间下午 4:35 // WildPeaks 在他的以下评论中发现了问题。
当我的滑块切换时,我需要保持定义高度。我已经对定向 SO 参考问题中的所有建议进行了多次尝试,但似乎无法获得语法。我也尝试过不同的 FX -帮助!
<script type="text/javascript">
jQuery(document).ready(function($){
$("#photo-rotator").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 6000);
});
</script>
------下面的原始问题:
我在无序列表中编写了一些基本的 HTML / CSS 链接。出于一个奇怪的原因,在悬停某些链接时,页面会跳转并向上滚动。几乎就像用户点击了一个'#'。但这发生在悬停时?
这是我的完整 footer.php
(这是在 Wordpress 网站内)
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
?>
<div id="endPage">
<div id="contactus">
<br /><br />
<p>Suggestions? Requests? Feedback? Are you talking about our books?<br />
Send us links to your book reviews and contact us on <a href="http://twitter.com/readitforward">Twitter</a> or <a href="http://www.facebook.com/ReadItForward">Facebook</a> or email us at <a href="mailto:readitforward@randomhouse.com">readitforward@randomhouse.com</a>.
</p>
</div>
<?php //<!-- =-=-=-=-=-=-=-=-=-=BEGIN RH FOOTER-==-=-=-=-=-=-=-=-= --> ?>
<div id="footer" style="margin-top: 30px;">
<div style="float:left;"><img src="http://www.osmproduction.com/RIF/wp-content/uploads/2012/04/RIF-Footerlogo.jpg" style="border:0px;" /></div><br />
<div style="position: absolute; margin-right: -150px; width: 350px; height: 250px; margin-top: 50px; padding-bottom: 15px;">
<ul id="feetnav" style="list-style: none; padding-left: 5px;">
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=9">Free Books</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=10">Reader Reviews</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=7">Meet the author</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=4">Meet Editor</li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=5">Book Groups</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=10">Favorites</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/">All Categories</a></li>
</ul>
</div>
<div id="searchfoot" style="margin-left: 550px; margin-top: 75px;">
<?php get_search_form(); ?>
</div>
<br />
<hr style="color: #fff; border: 1px solid white; height: 1px;" /></hr><br />
<div id="footer_categories">
<div style="">
<ul id="feetnav2" style="list-style: none; padding-left: 5px;">
<li style="float:left; font-color: #000;"><a href="http://www.osmproduction.com/RIF/?cat=9">The Crown Publishing Group</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=10">Books</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=7">Authors</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=4">Communites</li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=5">Features</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=10">Readers Guide</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/">Feature Sites</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=10">News</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/">Read It Forward</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=10">CrafterNews</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/">The Recipe Club</a></li>
<li class="footlink" style="float:left;"><a href="http://www.osmproduction.com/RIF/?cat=10">Books for Better Living</a></li>
</ul>
<p class="copyright">Use of this site indicates your consent to the Terms of Use. Copyright © 1995-2012 Random House, Inc. All rights reserved.</p>
</div>
</div>
</div>
</div>
</div>
<?php
function homepagename() {
$homepagename = "";
if(strlen($_SERVER['REQUEST_URI']) < 2) {
$homepagename = "Read It Forward Homepage";
}
print $homepagename;
}
?>
我还尝试了下面的 CSS 片段(我猜没有太大意义,但值得一试)
.footlink li:hover {
margin: 0px;
}
LIVE URL [ http://tinyurl.com/cz6sawg ] (将鼠标悬停在几个底部页脚链接上)
提示可能是我的滑块造成的?我似乎在代码中找不到任何应该导致这种情况的东西?滑块代码:
<!-- Top of Page Slider -->
<div id="photo-rotator">
<?php $slide_id=1; ?>
<?php
$featuredPosts = new WP_Query();
$featuredPosts->query("showposts=4");
while ($featuredPosts->have_posts()) : $featuredPosts->the_post();
?>
<div id="slide-<?php echo $slide_id; $slide_id++;?>">
<a href="<?php the_permalink() ?>" class="post-image">
<?php the_post_thumbnail( 'rotator-post-image' ); ?>
<span class="title"><?php the_title(); ?></span>
</a>
</div>
<?php endwhile; ?><!--/close loop-->
<ul id="slide-nav">
<?php $nav_id=1; ?>
<?php while ($featuredPosts->have_posts()) : $featuredPosts->the_post(); ?>
<li>
<a href="#slide-<?php echo $nav_id; ?>">
<span class="thumbnail" style="display:none;">
</span>
<? the_title(); $nav_id++;?>
<div style="">
<!--<?php the_excerpt(); ?>-->
<?php if($text= get_post_meta($post->ID, "slidetext", true)) { ?>
<div class="">
<p style="font-weight: normal; font-size: 14px;"><?php echo $text; ?></p>
</div>
<?php } //else { print"<div>"; } ?>
</div>
</a>
</li>
<?php endwhile; ?><!--/close loop-->
</ul>
</div>
<!-- End Top page Slider -->
这是启动滑块的 JS:
<script type="text/javascript">
jQuery(document).ready(function($){
$("#photo-rotator").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 6000);
});
</script>
(也只是尝试在标记和 CSS 中删除 UL / LI,以防 JS 以某种方式进行交互。) :(