我在wordpress(主题:Divi)中使用酒店预订插件,可用性搜索栏包含当前视图:https://www.fenyvesivendeghaz.hu/proba-oldal/
我希望附上一些内容:
如何使用css创建?
目前我有以下几行:
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
input[type=text] {
background-color: #f1f1f1;
background-image: url('searchicon.png');
background-position: 10px 10px;
border-radius: 4px;
border: none;
background-repeat: no-repeat;
padding-left: 40px;
float: left;
padding: 16px 20px;
}
select {
width: auto;
padding: 16px 20px;
border: none;
border-radius: 4px;
background-color: #f1f1f1;
float: left;
}
.input[type=text] {
display: inline-block;
min-width: 48.8%;
}
.input[type=text] {
margin-right: 1.4%;
}
提前致谢!
答案 0 :(得分:1)
使用此 -
.mphb_sc_search-form p {
display: inline-table;
margin-right: 12px;
vertical-align: middle;
}
或者如果您想在输入和输入上应用此功能仅在该表格内的按钮(不包括“Akötelezőenkitöltendőmezőketkövetia”)然后使用此 -
.mphb_sc_search-form p:not(:first-child) {
display: inline-table;
margin-right: 25px;
vertical-align: middle;
}
以表格为中心 -
.mphb_sc_search-form {
text-align: center;
}
删除“Akötelezőenkitöltendőmezőketkövetia*” -
p.mphb-required-fields-tip {
display: none;
}