我使用联系表格7为酒店设计预订表格。
我无法弄清楚如何自定义布局。我希望某些文本字段显示在同一行,但我找不到元素的正确标识和/或用于实现这个非常简单的目标的CSS样式。
以下是代码:
<div id="responsive-form" class="clearfix">
<label> Your Name (required)
[text* your-name] </label>
<label> Your Email (required)
[email* your-email] </label>
<label> Arrival date
[date date-79 id:Arrivaldate date-format:mm/dd/yy] </label>
<label> Departure date
[date date-80 id:Departuredate date-format:mm/dd/yy] </label>
<label> How many guests?
[text your-guests] </label>
<div class="form-row">
<p>Number of adults [text your-adults]</p>
<p>Number of children under 6 years old [text your-little-children]</p>
<p>Number of children under 12 years old [text your-big-children]</p>
</div>
Select your preferred accomodation
[checkbox your-accomodation use_label_element "Wayan (Two-story villa)" "Kadek (Two-story villa)" "Nyoman (Garden bungalow)" "Kehut (Garden bungalow)" "Pasca (Garden bungalow)"]
Do you need transportation to the hotel ?
[radio your-pickup default:1 use_label_element exclusive "No transport needed" "Transport from Denpasar airport" "Transsport from Gilimanuk Ferry"]
<label> Do you want us to arrange motorbike rental for you ?
[text your-motorbikes] </label>
<label> Tell us more about what brings you to Balian
[textarea your-message] </label>
[submit "Send"]
</div>
&#13;
我想在一行上显示表单行元素的p元素。我试过这个CSS专栏:
.form_row p{
display: inline-block
}
&#13;
但它没有做任何事情。我觉得我错过了什么,有人可以帮忙吗?
非常感谢,
本杰明
答案 0 :(得分:2)
您可能有一个CSS规则使<p>
元素全宽。
为什么不使用<div>
并使用主题的课程?
<div class="form-row">
<div class="grid-33">Number of adults [text your-adults]</div>
<div class="grid-33">Number of children under 6 years old [text your-little-children]</div >
<div class="grid-33">Number of children under 12 years old [text your-big-children]</div>
</div>
答案 1 :(得分:1)
您可以使用主题网格将其分为两列。见下面的片段
scala> val doubler = (x: Int) => x * 2
doubler: Int => Int = <function1>
答案 2 :(得分:1)
我对Contact Form 7缺乏设计解决方案感到非常沮丧。 一年前,我的任务是在cf7中创建具有复杂布局要求的多个表单。为了解决这个问题,我开始创建一个允许响应式网格布局设计的插件,以及使用模块化方法来构建构建的能力,即能够将现有形式重用为更大的形式构造。 我刚刚发布了Smart Grid-layout design for CF7,它在仪表板中提供了一个网格UI编辑器,允许您在一行中构建一个3列布局。你不需要乱用css,布局将在你的页面上呈现。它还具有响应性,在手机上默认为3行。
尝试一下,让我知道你的想法。
答案 3 :(得分:1)
您的代码对我来说效果很好,您的CSS中只有语法错误。 HTML中元素的名称为form-row
,但在CSS中您编写了form_row
。我刚刚将CSS选择器更改为form-row
,一切都按预期工作。
.form-row p {
display: inline-block;
}
答案 4 :(得分:0)
您可以按如下方式使用HTML表格:
<table>
<tr>
<td>Number of adults [text your-adults]</td>
<td>Number of children under 6 years old [text your-little-children]</td>
<td>Number of children under 12 years old [text your-big-children]</td>
</tr>
</table>
答案 5 :(得分:0)
Hope this video instruction will help you
以下是我的联系表格7的CSS代码:
/* Create two equal columns that floats next to each other */
.column {
float: left;
width: 50%;
padding: 10px;
}
/* Clear floats after the columns */
.row:after {
display: table;
clear: both;
}
#knopka
{
color: #fffff;
background: #8F8CA0;
width: 90%;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
答案 6 :(得分:0)
您可以简单地使用HTML表结构!
<table>
<tr>
<td colspan="2">[text* Name placeholder "Your Name"]</td>
</tr>
<tr>
<td>[text* Class placeholder "Enter Class"]
</td>
<td>
[text* Medium placeholder "Enter Medium"]
</td>
</tr>
</table>
[submit "Submit"]