wordpress 减少重力形成场的间距

798qvoo8  于 2023-11-17  发布在  WordPress
关注(0)|答案(4)|浏览(124)

我有问题的形式与重力形式插件创建的样式。顶部和底部的字段之间的空间太多。我需要帮助,请
关于footer of my website
谢谢

p5cysglq

p5cysglq1#

添加此CSS

body .gform_wrapper ul li.gfield {
 margin-top: 0 !important;
}

.block-content ul li {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

字符串

czfnxgou

czfnxgou2#

添加此CSS

<style>
    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;
    }
</style>

字符串

sdnqo3pr

sdnqo3pr3#

.gform_body ul li, .gform_body input, .gform_body div{ 
    margin: 0;
}

字符串
您也可以添加.gform_body textarea等.

jpfvwuh4

jpfvwuh44#

就用这个:

.gform-theme--api, .gform-theme--foundation {
--gform-theme-form-row-gap: 10px; }

字符串

相关问题