我有兩個CSS浮動問題在這個網站(http://melisayavas.com/web),我不明白。第一個是在主頁上。我有兩個JavaScript幻燈片和一個大的空白空間下面。爲什麼?css浮動和邊緣問題在wordpress
第二個問題是在新聞頁面 - http://melisayavas.com/web/?page_id=30 - 側邊欄根本不會浮在應該在的位置。再次,我不知道什麼元素停止浮動。
這是header.php中的HTML代碼:
<article class="post" id="post-<?php the_ID(); ?>">
<div class="homepage">
<div class="testimonials"><?php slidedeck(58, array('width' => '500px', 'height' => '550px')); ?>
</div>
<div class="images"><?php slidedeck(66, array('width' => '400px', 'height' => '550px')); ?>
</div>
</div>
</article>
這是相關的CSS:
article, aside, figure, footer, header, hgroup, nav, section {
display: block;
overflow: hidden;
clear: both;
}
.post {
border: 2px solid;
border-radius: 10px;
clear: both;
overflow: hidden;
padding: 20px;
margin-top: 28px;
}
.testimonials {position: relative;}
.images {position:relative;margin-left: 543px; top: -556px; width: 100%;}
的新聞頁面的HTML:
<div class="news-page">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="news">
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<?php include (TEMPLATEPATH . '/_/inc/meta.php'); ?>
<div class="entry">
<?php the_content(); ?>
</div>
</article>
</div>
<?php endwhile; ?>
<?php include (TEMPLATEPATH . '/_/inc/nav.php'); ?>
<?php else : ?>
<h2>Not Found</h2>
<?php endif; ?>
</div>
而CSS:
.news-page {
width: 100%;
}
.news {
float: left;
width: 60%;
}
#sidebar {float: right; width: 30%;}
謝謝你的解釋和幫助! – 2012-04-09 22:34:49
謝謝,我很高興我可以幫助:) – afaf12 2012-04-09 22:37:28