将Gravity Forms的提交按钮放在窗体的中央

时间:2017-04-24 13:57:09

标签: html css forms gravity-forms-plugin

我正在尝试将Gravity Forms中的提交按钮放在当前中心的格式下。

示例:

enter image description here

我的Gravity Form上有two-column版面。该按钮当前正在右栏下方浮动。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

试试这个:http://jsfiddle.net/7Laf8/

你基本上把你的按钮放在div中:

<div class="wrapper">
    <button class="button">Button</button>
</div>
With the following styles:

.wrapper {
    text-align: center;
}

.button {
    position: absolute;
    top: 50%;