提问人:Emon 提问时间:8/14/2023 最后编辑:Emon 更新时间:8/14/2023 访问量:19
COL-MD-3 没有定位在 COL-MD-9 的右侧 - 发生事件的因素是什么?
col-md-3 is not positioning to the right of col-md-9 - what are the factors that occuring the incident?
问:
在我的网站输出中 - Col-md-9 运行良好 - 而 col-md-3 向下移动到 col-md-9,正确放置了所有必要的属性。
<?php get_header(); ?>
col-md-9
<div class="col-md-9">
<?php
if (have_posts()) :
while (have_posts()) : the_post();
?>
<div class="blog_area">
<div class="post_thumb">
<a href="<?php the_permalink(); ?>"><?php echo the_post_thumbnail('post-thumbnails'); ?></a>
</div>
<div class="post_details">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
</div>
<?php the_excerpt(); ?>
</div>
<?php
endwhile;
else:
_e('No post found');
endif;
?>
<div id="pagination">
<?php if('bobcat_pagination') {bobcat_pagination(); } else{ ?>
<?php next_post_link(); ?>
<?php previous_post_link(); ?>
<?php } ?>
</div>
</div>
col-md-3
<div class="col-md-3">
<?php get_sidebar(); ?>
</div>
</div>
type here
`
note
在这里,侧边栏如何在整个网页中应用 - 除了博客页面。
如果你需要更多的编码片段或线索,我会为你提供。
答: 暂无答案
评论