发送php表单后,如何编辑“新”确认页面?

时间:2019-02-20 12:12:50

标签: php html css

PHP联系人表格已发送并显示确认消息:我需要将白色背景的div列为完整列。如果我在邮件上添加页边距,则会破坏如图所示的布局。我仍在围绕交互作用来讨论PHP逻辑的结构,我不确定如何精确地调整和解决问题。

我的代码的结构如下:

<div id="whitebox" class="whitebox">
<div class="text-center orange-navbar">
      <nav role="navigation">
<ul class="navcen nav nav-pills" >
  <li role="presentation"><a href="index.html">Home</a></li>
  <li role="presentation"><a href="portfolio.html">Portfolio</a></li>
  <li class="active" role="presentation"><a href="contact.html">Contact</a></li>
  </ul>
</nav>
    </div>

    
    <?php if(!empty($emailSent)): ?>
        <div class="col-md-6 col-md-offset-3">
            <div class="alert alert-success text-center"><?php echo $config->get('messages.success'); ?></div>
        </div>
    <?php else: ?>
        <?php if(!empty($hasError)): ?>
        <div class="col-md-5 col-md-offset-4">
            <div class="alert alert-danger text-center"><?php echo $config->get('messages.error'); ?></div>
        </div>
        <?php endif; ?>

Contact form success response

1 个答案:

答案 0 :(得分:0)

将此添加到您的CSS:

.whitebox {
  height: 100vh;
}

这将使您的whitebox div的视口高度为100%。