【发布时间】:2015-08-23 05:24:25
【问题描述】:
我正在尝试降低此页面上 Contact 7 表单中“您的消息”输入框的高度:https://www.nycofficesuites.com/new/office-space-vertical/
我尝试了以下方法(高度不同,所以我可以看到哪个在工作)但没有任何工作。谢谢你的帮助。
.wpcf7-textarea {
height: 80px;
}
.wpcf7 input[type=text] {
height:10px !important;
}
textarea {
height: 30px;
}
【问题讨论】:
-
如果您检查该元素,您会看到它设置了
min-height。所以不要使用.wpcf7-textarea{ height: 80px; },而是使用.wpcf7-textarea{ min-height: 80px; }。
标签: css wordpress plugins contact-form