尝试在Netsuite中对齐并响应在线表单(HTML / CSS)

问题描述 投票:-2回答:1

我一直在努力为客户设计一个在线表格上传他们的处方。我在Dreamweaver中创建了下面的内容,我不是一个程序员,你将在下面看到,但我已经给了它我的镜头来完成这项工作并且可能添加了太多东西然后需要大声笑。我刚刚关注了一些在线教程,可能搞砸了。

如果您运行底部的链接,您将看到它未对齐(顶部,“请输入您的详细信息文本和表单字段”)。我已经尝试过很多填充它,当然响应不起作用)。

我希望你能提供帮助。 (如果我在错误的部分发布了这个,我道歉)。

table {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #000000;
}

.topnav {
  float: left;
  text-align: left;
  padding-left: 200px;
  padding-right: 200px;
  text-decoration: none;
}

.fields {
  float: left;
  padding-left: 200px;
  padding-right: 200px;
  text-align: left text-decoration: none;
}

* {
  box-sizing: border-box;
}

#column_container {
  width: 837px;
  margin: 0 auto;
}
<div class="topnav" id="myTopnav">
  <table width="900" cellpadding="30">
    <tbody>
      <tr>
        <td>
          <a href="http://www.medicalsupplydepot.com"><img src="http://themedicalsupplydepot.com/email/logo.jpg" width="183" height="95" alt="Medical Supply Depot"></a>
        </td>
        <td>
          <a href="javascript:popUpUru('https://sealinfo.verisign.com/splash?form_file=fdf/splash.fdf&dn=secure.medicalsupplydepot.com&amp;lang=en')" title="Click to Verify - This site chose Symantec SSL for secure e-commerce and confidential communications."><img src="https://secure.medicalsupplydepot.com/site/img/verisign_l.gif" alt="Norton SECURED Powered by VeriSign"></a>
          <br>
          <a style="padding-left: 3px;" href="https://www.mcafeesecure.com/RatingVerify?ref=www.medicalsupplydepot.com"><img src="https://images.scanalert.com/meter/www.medicalsupplydepot.com/13.gif" alt="McAfee SECURE sites help keep you safe from identity theft, credit card fraud, spyware, spam, viruses and online scams" oncontextmenu="alert('Copying Prohibited by Law - McAfee Secure is a Trademark of McAfee, Inc.'); return false;"
              border="0" height="54" width="94"></a>
        </td>
        <td>
          <table cellpadding="0" cellspacing="0" align="left" width="200">
            <tbody>
              <tr>
                <td><img src="http://themedicalsupplydepot.com/email/telephone.jpg" width="29" height="29"></td>
                <td style="font-size:21px; font-weight:bold; color:#536f86">(800) 965-7496</td>
              </tr>
              <tr>
                <td><img src="http://themedicalsupplydepot.com/email/clock.jpg" width="29" height="29"></td>
                <td style="font-size:12px; font-weight:bold; color:#333333; padding-top:4px">Monday through Friday, <br>9am to 9pm (Eastern Time)</td>
              </tr>
              <tr>
                <td><img src="http://themedicalsupplydepot.com/email/contact.jpg" width="29" height="29"></td>
                <td style="font-size:11px; font-weight:bold;"><a href="mailto:[email protected]">[email protected]</a></td>
              </tr>
            </tbody>
          </table>
          <br><br>
          <NLFORM>
        </td>
      </tr>
    </tbody>
  </table><br></div>
<br /><br />
<div class="fields" id="fields">
  <h2>Please fill in the details:</h2>
  <table width="100" cellpadding="1">
    <tr>
      <td>
        <nlsalutation></nlsalutation>
      </td>
      <td>
        <nladdress1></nladdress1>
      </td>
    </tr>
    <tr>
      <td>
        <nlfirstname></nlfirstname>
      </td>
      <td>
        <nladdress2></nladdress2>
      </td>
    </tr>
    <tr>
      <td>
        <nllastname></nllastname>
      </td>
      <td>
        <nladdress3></nladdress3>
      </td>
    </tr>
    <tr>
      <td>
        <nlemail></nlemail>
      </td>
      <td>
        <nlstate></nlstate>
      </td>
    </tr>
    <tr>
      <td>
        <nlphone></nlphone>
      </td>
      <td>
        <nlzipcode></nlzipcode>
      </td>
    </tr>
    <tr>
      <td>
        <nlfile></nlfile>
      </td>
      <td></td>
    </tr>
    <tr>
      <td>
        <nlcomments></nlcomments>
      </td>
      <td>&nbsp;</td>
    </tr>
  </table>
</div>

这是Online Form的实际形式。添加的字段是Netsuite系统的一部分,因此它们不会出现在Dreamweaver或Notepad ++上,也不会出现在你们使用的任何其他内容中。

html css responsive-design netsuite
1个回答
0
投票

基于你的HTML,我已经添加了最小量的CSS,以使其响应并保持您的输入。另外,添加了CSS以允许您控制每个元素的样式。我仍然建议找到一种方法来添加框架(https://getbootstrap.com/是我最喜欢的)到你的NetSuite页面。这很可能就足够了,但不会像新的屏幕和设备那样以流行的框架与更新相同的方式发展。

无论如何,让我知道你如何使用它,如果你有任何问题,请问。

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
  background: #f9fafb;
}


/* FONT STYLES */

* {
  font-family: Arial, Helvetica, sans-serif;
  color: #193652;
  line-height: 1.5;
}

h2 {
  font-size: 2rem;
}


/* GRID */

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  position: relative;
  width: 100%;
}

.row [class^="col"] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.hidden-sm {
  display: none;
}

.pull-right {
  float: right;
}

@media only screen and (min-width: 33.75em) {
  /* 540px */
  .container {
    width: 90%;
  }
}

@media only screen and (min-width: 45em) {
  /* 720px */
  .col-1 {
    width: 4.33%;
  }
  .col-2 {
    width: 12.66%;
  }
  .col-3 {
    width: 21%;
  }
  .col-4 {
    width: 29.33%;
  }
  .col-5 {
    width: 37.66%;
  }
  .col-6 {
    width: 46%;
  }
  .col-7 {
    width: 54.33%;
  }
  .col-8 {
    width: 62.66%;
  }
  .col-9 {
    width: 71%;
  }
  .col-10 {
    width: 79.33%;
  }
  .col-11 {
    width: 87.66%;
  }
  .col-12 {
    width: 96%;
  }
  .hidden-sm {
    display: block;
  }
  .hidden-lg {
    display: none;
  }
  .footer-text {
    text-align: left !important;
    padding: 13px 0;
  }
  input[type="submit"] {
    float: right !important;
    width: 200px !important;
  }
}

@media only screen and (min-width: 60em) {
  /* 960px */
  .container {
    width: 100%;
    max-width: 60rem;
  }
}


/* HEADER */

header {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #d9e3ed;
  background: #fff;
}

.sec-images {
  text-align: center;
}

.sec-images img {
  height: 45px
}

ul {
  list-style: none;
  float: right;
  margin: 0;
}

li {
  display: flex;
}

li.phone {
  font-size: 21px;
  font-weight: bold;
  color: #536f86;
  height: 35px;
}

li.phone:before {
  content: url(http://themedicalsupplydepot.com/email/telephone.jpg);
  display: inline-block;
  margin-right: 10px;
}

li.hours {
  font-size: 12px;
  font-weight: bold;
  color: #333;
  height: 35px;
}

li.hours:before {
  content: url(http://themedicalsupplydepot.com/email/clock.jpg);
  display: inline-block;
  margin-right: 10px;
}

li.email {
  font-size: 11px;
  font-weight: bold;
  height: 29px;
  line-height: 2.7;
}

li.email:before {
  content: url(http://themedicalsupplydepot.com/email/contact.jpg);
  display: inline-block;
  margin-right: 10px;
}


/* FOOTER */

footer {
  width: 100%;
  padding: 1em 0;
  border-top: 1px solid #d9e3ed;
  background: #fff;
  margin-top: 50px;
}

.footer-text {
  text-align: center;
  padding: 13px 0;
}

.footer-images {
  text-align: center;
}

.footer-images img {
  height: 45px;
  vertical-align: middle;
}


/* FORM */

label {
  font-weight: 700;
  color: #536f86;
}

input[type="text"],
input[type="email"],
input[type="number"] {
  border: 1px solid #d9e3ed;
  padding: 0 10px;
  height: 40px;
  line-height: 36px;
  font-size: 16px;
  color: #193652;
  border-radius: 6px;
  width: 95%;
  margin-bottom: 10px;
}

select {
  border: 1px solid #d9e3ed;
  padding: 0 10px;
  height: 40px;
  line-height: 36px;
  font-size: 16px;
  color: #193652;
  border-radius: 6px;
  width: 99%;
  margin-bottom: 10px;
  background: #fff;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="textarea"]:focus,
select:focus {
  border: 1px solid #9d2a31 !important;
  box-shadow: none!important;
  outline: none!important;
}

input[type="textarea"] {
  border: 1px solid #d9e3ed;
  padding: 0 10px;
  height: 120px;
  line-height: 36px;
  font-size: 16px;
  color: #193652;
  border-radius: 6px;
  width: 95%;
}

input[type="file"] {
  height: 40px;
  font-size: 16px;
  color: #193652;
  width: 95%;
}

input[type="submit"] {
  height: 60px;
  line-height: 48px;
  padding: 0 30px;
  font-size: 20px;
  text-transform: none;
  color: #fff;
  border-radius: 6px;
  background: #9d2a31;
  float: left;
  width: 99%
}
<header>
  <div class="container">
    <div class="row">
      <div class="col-6-sm col-3">
        <img src="http://themedicalsupplydepot.com/email/logo.jpg">
      </div>
      <div class="col-6 hidden-sm sec-images">
        <img src="https://secure.medicalsupplydepot.com/site/img/verisign_l.gif"><br>
        <img src="https://images.scanalert.com/meter/www.medicalsupplydepot.com/13.gif">
      </div>
      <div class="col-6-sm col-3">
        <ul>
          <li class="phone">(800) 965-7496</li>
          <li class="hours">Monday through Friday,<br>9am to 9pm (Eastern Time)</li>
          <li class="email">[email protected]</li>
        </ul>
      </div>
    </div>
  </div>
</header>
<section>
  <div class="container">
    <div class="row">
      <div class="col-12">
        <h2>Please fill in the details:</h2>
      </div>
    </div>
    <div class="row">
      <form>
        <div class="col-sm-12 col-6">
          <!-- Replace <nlsalutation></nlsalutation>-->
          <label>Mr/Mrs</label>
          <input type="text">
          <!-- End Replace -->

          <!-- Replace <nlfirstname></nlfirstname>-->
          <label>First Name</label>
          <input type="text">
          <!-- End Replace -->

          <!-- Replace <nllastname></nllastname>-->
          <label>Last Name</label>
          <input type="text">
          <!-- End Replace -->

          <!-- Replace <nlemail></nlemail>-->
          <label>Email</label>
          <input type="email">
          <!-- End Replace -->

          <!-- Replace <nlphone></nlphone>-->
          <label>Phone Number</label>
          <input type="number">
          <!-- End Replace -->

          <!-- Replace <nlfile></nlfile>-->
          <label>File</label>
          <input type="file">
          <!-- End Replace -->

          <!-- Replace <nlcomments></nlcomments>-->
          <label>Comments</label>
          <input type="textarea">
          <!-- End Replace -->

        </div>
        <div class="col-sm-12 col-6">
          <!-- Replace <nladdress1></nladdress1>-->
          <label>Address line 1</label>
          <input type="text">
          <!-- End Replace -->

          <!-- Replace <nladdress2></nladdress2>-->
          <label>Address line 2</label>
          <input type="text">
          <!-- End Replace -->

          <!-- Replace <nladdress3></nladdress3>-->
          <label>Address line 3</label>
          <input type="text">
          <!-- End Replace -->

          <!-- Replace <nlstate></nlstate>-->
          <label>State</label>
          <select name="cars">
            <option value="option1">Option1</option>
            <option value="option2">Option2</option>
            <option value="option3">Option3</option>
            <option value="option4">Option4</option>
          </select>
          <!-- End Replace -->

          <!-- Replace <nlzipcode></nlzipcode>-->
          <label>Zip/Postal Code</label>
          <input type="text">
          <!-- End Replace -->

        </div>
      </form>
    </div>
    <div class="row">
      <div class="col-12">
        <input type="submit">
      </div>
    </div>
  </div>

</section>
<footer>
  <div class="container">
    <div class="row">
      <div class="col-12-sm footer-text">
        © 2017 Medical Supply Depot.
      </div>
      <div class="col-12-sm hidden-lg footer-images">
        <img src="https://secure.medicalsupplydepot.com/site/img/verisign_l.gif">
        <img src="https://images.scanalert.com/meter/www.medicalsupplydepot.com/13.gif" style="margin-top:5px;">
      </div>
    </div>
  </div>
</footer>
© www.soinside.com 2019 - 2024. All rights reserved.