php - CSS - 在 Wordpress 中调整大小时,元素不会相互堆叠

标签 php css wordpress responsive-design

我正在将一些媒体查询样式规则应用于 wordpress 网站。一个部分有两行,每行 3 x 4 列。在每一行中都有一个图像,下面有一个段落。当我调整页面大小时,我需要将每个图像堆叠在其各自段落的顶部。我在我的前端测试站点上进行了此工作,但是当我在我的 wordpress 站点上对其进行测试时,它们并排堆叠在一起。

这是一个代码片段 -

body {
  margin: 0 auto 0 auto;
}

.container {
  margin: auto;
  max-width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

section#team {
  height: 800px;
  max-width: 100%;
}

section#team div.row {
  height: 350px;
}

#team .four {
  position: relative;
  width: 320px;
  padding: 30px;
}

#team h4 {
  text-align: center;
  margin-top: 30px;
}

#team img {
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  bottom: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}

#team p {
  text-align: center;
  font-size: 10px;
  margin-top: 100px;
}

@media screen and (max-width: 1000px) {
  div.container {
    float: none;
    margin: 0;
    width: calc(100% - 40px);
    box-sizing: border-box;
  }
  div.column {
    float: none;
  }
}

@media screen and (max-width: 480px) {
  body {
    max-width: 500px;
    border: 1px dashed #ccc;
    min-height: 400px;
  }
  
  section#team {
    float: none;
    height: auto;
  }
  
  #team .four {
    width: auto;
    height: auto;
    position: relative;
    transform: translate(-30%, -5%);
  }
}
<body>
  <section id="team">
    <div class="container">
      <div class="twelve columns">
        <h4>MEET THE TEAM</h4>
        <div class="row">
          <div class="four columns">
            <img src="https://static.pexels.com/photos/99551/hot-air-balloon-valley-sky-99551.jpeg" alt="Meet Tim" style="width:100px;height:100px;">
            <p>Praesent sodales, leo at pellentesque pellentesque, nunc erat dapibus nunc, ut congue libero lorem in orci. Suspendisse potenti. Quisque facilisis mauris in vestibulum tempor.</br>Praesent sodales, leo at pellentesque pellentesque, nunc erat
              dapibus nunc, ut congue libero lorem in orci. Suspendisse potenti. Quisque facilisis mauris in vestibulum tempor.
            </p>
          </div>
          <div class="four columns">
            <img src="https://static.pexels.com/photos/99551/hot-air-balloon-valley-sky-99551.jpeg" alt="Meet Tim" style="width:100px;height:100px;">
            <p>Praesent sodales, leo at pellentesque pellentesque, nunc erat dapibus nunc, ut congue libero lorem in orci. Suspendisse potenti. Quisque facilisis mauris in vestibulum tempor.</br>Praesent sodales, leo at pellentesque pellentesque, nunc erat
              dapibus nunc, ut congue libero lorem in orci. Suspendisse potenti. Quisque facilisis mauris in vestibulum tempor.
            </p>
          </div>
          <div class="four columns">
            <img src="https://static.pexels.com/photos/99551/hot-air-balloon-valley-sky-99551.jpeg" alt="Meet Tim" style="width:100px;height:100px;">
            <p>Praesent sodales, leo at pellentesque pellentesque, nunc erat dapibus nunc, ut congue libero lorem in orci. Suspendisse potenti. Quisque facilisis mauris in vestibulum tempor.</br>Praesent sodales, leo at pellentesque pellentesque, nunc erat
              dapibus nunc, ut congue libero lorem in orci. Suspendisse potenti. Quisque facilisis mauris in vestibulum tempor.</p>
          </div>
        </div>

        <div class="row">
          <div class="four columns">
            <img src="https://static.pexels.com/photos/99551/hot-air-balloon-valley-sky-99551.jpeg" alt="Meet Tim" style="width:100px;height:100px;">
            <p>Praesent sodales, leo at pellentesque pellentesque, nunc erat dapibus nunc, ut congue libero lorem in orci. Suspendisse potenti. Quisque facilisis mauris in vestibulum tempor.</br>Praesent sodales, leo at pellentesque pellentesque, nunc erat
              dapibus nunc, ut congue libero lorem in orci. Suspendisse potenti. Quisque facilisis mauris in vestibulum tempor.</p>
          </div>
          <div class="four columns">
            <img src="https://static.pexels.com/photos/99551/hot-air-balloon-valley-sky-99551.jpeg" alt="Meet Tim" style="width:100px;height:100px;">
            <p>Praesent sodales, leo at pellentesque pellentesque, nunc erat dapibus nunc, ut congue libero lorem in orci. Suspendisse potenti. Quisque facilisis mauris in vestibulum tempor.</br>Praesent sodales, leo at pellentesque pellentesque, nunc erat
              dapibus nunc, ut congue libero lorem in orci. Suspendisse potenti. Quisque facilisis mauris in vestibulum tempor.</p>
          </div>
          <div class="four columns">
            <img src="https://static.pexels.com/photos/99551/hot-air-balloon-valley-sky-99551.jpeg" alt="Meet Tim" style="width:100px;height:100px;">
            <p>Praesent sodales, leo at pellentesque pellentesque, nunc erat dapibus nunc, ut congue libero lorem in orci. Suspendisse potenti. Quisque facilisis mauris in vestibulum tempor.</br>Praesent sodales, leo at pellentesque pellentesque, nunc erat
              dapibus nunc, ut congue libero lorem in orci. Suspendisse potenti. Quisque facilisis mauris in vestibulum tempor.</p>
          </div>
        </div>
      </div>
    </div>
  </section>
</body>

我不知道我的 wordpress 网站是否需要一套不同的规则 - 这是该页面的 php 代码 -

<?php /* Template Name: Meet the team */ ?>
<?php get_header(); ?>

<?php get_template_part('topimage-about'); ?>
    <section id="team">
        <div class="container">
            <div class="twelve columns">
                             <h4>MEET THE TEAM</h4>
                <div class="row">
                        <div class="four columns">
                                <?php if( get_field('team_img_1') ): ?>

                                <img src="<?php the_field('team_img_1'); ?>" style="width:100px;height:100px;" />

                                <?php endif; ?>
                                <p><?php the_field('team_bio_1'); ?>
                                </p> 
                        </div>        
                        <div class="four columns">
                               <?php if( get_field('team_img_2') ): ?>

                                <img src="<?php the_field('team_img_2'); ?>" style="width:100px;height:100px;" />

                                <?php endif; ?>
                                <p><?php the_field('team_bio_2'); ?>
                                </p> 
                        </div>
                        <div class="four columns">    
                                <?php if( get_field('team_img_3') ): ?>

                                <img src="<?php the_field('team_img_3'); ?>" style="width:100px;height:100px;" />

                                <?php endif; ?>
                                <p><?php the_field('team_bio_3'); ?>
                                </p>
                        </div>    
                </div>

                <div class="row">
                        <div class="four columns">    
                                <?php if( get_field('team_img_4') ): ?>

                                <img src="<?php the_field('team_img_4'); ?>" style="width:100px;height:100px;" />

                                <?php endif; ?>
                                <p><?php the_field('team_bio_4'); ?>
                                </p>
                        </div>
                        <div class="four columns">    
                                <?php if( get_field('team_img_5') ): ?>

                                <img src="<?php the_field('team_img_5'); ?>" style="width:100px;height:100px;" />

                                <?php endif; ?>
                                <p><?php the_field('team_bio_5'); ?>
                                </p>
                        </div>
                        <div class="four columns">    
                                <?php if( get_field('team_img_6') ): ?>

                                <img src="<?php the_field('team_img_6'); ?>" style="width:100px;height:100px;" />

                                <?php endif; ?>
                                <p><?php the_field('team_bio_6'); ?>
                                </p>
                        </div>
                </div>
            </div>
        </div>                
    </section>

       <?php get_template_part('form'); ?>





<?php get_sidebar(); ?>

<?php get_footer(); ?>

更新 - fiddle 中提供的代码修复了我的媒体查询,但我的主要样式现在不起作用。这就是它现在完全拉伸(stretch)的样子 -

meet the team - desktop

最佳答案

这旨在帮助您找到正确的路径 - 它并不完整,但它会给您一个想法。检查 fiddle ,然后玩耍 :)

我必须发布一些代码,用 fiddle 来回答。但是你的问题之一是你的正常样式的高度是固定的

@media screen and (max-width: 480px) {
    section#team div.row {
          height:auto;
    }
} 

Fiddle

很高兴它对你有用。

关于php - CSS - 在 Wordpress 中调整大小时,元素不会相互堆叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45455457/

相关文章:

php - 搜索字段和按钮

php - html5 php 视频上传和显示 - 如何为特定上传添加评论

WordPress wp_schedule_event 未触发

PHP ImageMagick 从 http 获取图像

php - 比赛入场限制为每天一次

javascript - 下拉菜单 JS [简单]

html - 相对位置需要-px

css - 无法在 Visual Studio 2010 中设置背景图像

php - 需要使用此代码 woocommerce wordpress 按 ID 显示某些类别

WordPress 自定义帖子类型分类模板