我不小心隐藏了我为网站页脚创建的重力形式的字段,我认为这是在我添加CSScode以减少表单字段之间的间距时发生的。
请问我该怎么撤消这个,因为我只能看到提交按钮和窗体小部件标题。
Here's a link to the website if needed.
此处还有页脚小部件的屏幕截图:
由于
body .gform_wrapper ul li.gfield {
margin-top: 0px !important;
padding-top: 0;
}
.block-content ul li {
margin-bottom: 0 !important;
margin-top: 0 !important;
}
.gform_body ul li .ginput_container select,.gform_body ul li .ginput_container input{
margin-bottom: 0px;
}
.gform_wrapper .top_label .gfield_label {
display: none !important;
}

答案 0 :(得分:0)
由于样式表中的规则不同,您的字段会被隐藏。
检查您网站上的网络元素向我展示了这一点:
你的style.css中的第159行
.gform_wrapper.two-column_wrapper ul.gform_fields, .gform_wrapper.two-column_wrapper ul.gform_column li.gsection:first-child {
display: none;
}
您的第一个声明:.gform_wrapper.two-column_wrapper ul.gform_fields
是重力表单内表单字段的父容器。删除它(以及分隔2个声明的逗号的逗号)将解决问题。
为了详细说明,这行代码将成为:
.gform_wrapper.two-column_wrapper ul.gform_column li.gsection:first-child {
display: none;
}
我在Firefox中使用Firebug进行了测试,显示了这个: