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?

提问人:Emon 提问时间:8/14/2023 最后编辑:Emon 更新时间:8/14/2023 访问量:19

问:

enter image description here在我的网站输出中 - 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>

enter image description here

col-md-3

    <div class="col-md-3">
      <?php get_sidebar(); ?>
    </div>

</div>
type here

`

note在这里,侧边栏如何在整个网页中应用 - 除了博客页面。

如果你需要更多的编码片段或线索,我会为你提供。

HTML CSS twitter-bootstrap-3 主题自定义 -wordpress-pages

评论

0赞 Emon 8/15/2023
最后 - 我发现了导致我上面提到的问题的问题,并在此时包装了线程。问题出在 col-md-9 div 中不幸复杂的分页 div。

答: 暂无答案