- This topic has 4 replies, 3 voices, and was last updated 6 years, 1 month ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
Affiliates Management Plugin for WordPress
by
WordPress Affiliate Manager › Forums › Affiliate Manager Plugin › Way to edit registration form design?
Tagged: register form
On my wordpress site, the submit button needs to be spaced more below the form, the submit button almost overlaps the box border. I would also like to center the form on my page instead of aligning left. Is there a way to do this?
How my form currently looks. https://imgur.com/IkdR60S
Hi, can you share a URL the registration form.
Thank you
theangelonhighstreet.com/affiliate-home/affiliate-register
@vBcoke, The button is aligned correctly. But the form is supposed to take up the full width of the content area. So I believe this has something to do with your theme.
Please use the contact form to get in touch so we can take a closer look at your site: https://wpaffiliatemanager.com/contact/
Adding this custom CSS fixed the issue (Appearance > Customize > Additional CSS):
form#mainForm{
text-align: center;
}
form#mainForm table.pure-table{
margin-left: auto;
margin-right: auto;
margin-bottom: 1.75em;
}