How can I add space between a Form and the Submit Button in Woocommerce?

I am trying to give 20px space between the Form and the Button showed in the image:

See Image

You can access the page through this link: https://kamadob10.eu/my-account/account-information/

Use this log in information: [email protected] / example.102938

I have been trying to target the form's upper fieldset but it is not working. I can't find what is my mistake:

.woocommerce-EditAccountForm edit-account fieldset {
margin-bottom: 20px;
}

I would really appreciate if someone could help me with this. I am pretty new to CSS. Thank you!

Upvotes: 2

Views: 577

Answers (1)

Earid
Earid

Reputation: 842

Try this code,

 button.woocommerce-Button.button {
        margin-top: 20px !important;
    }

or for just for this page,

.page-id-545 button.woocommerce-Button.button {
    margin-top: 20px;
}

Upvotes: 2

Related Questions