Reputation: 23
I am trying to give 20px space between the Form and the Button showed in the 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
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