缺少重力表单字段
Missing Gravity Form Fields
我不小心隐藏了为我的网站页脚创建的重力表单的字段,我认为这是在我添加 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;
}
由于样式表中的不同规则,您的字段已隐藏。
检查您网站上的网络元素向我展示了以下内容:
你的第 159 行 style.css
.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 测试了这个,它显示了这个:
我不小心隐藏了为我的网站页脚创建的重力表单的字段,我认为这是在我添加 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;
}
由于样式表中的不同规则,您的字段已隐藏。
检查您网站上的网络元素向我展示了以下内容:
你的第 159 行 style.css
.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 测试了这个,它显示了这个: