Hi – I am seeing a problem with the form display on the Edit Registration page. The ’email’ label is offset to the right, and field is justified to the left, so it looks very strange. Please see http://www.empathydesign.co.uk/development/event-registration/?ee=8 although obviously you’ll need to input some details to access the edit page.
Thanks
This topic was modified 11 years, 6 months ago by Jonathan Wilson. Reason: Removed sensitive site information
I checked and it looks to me that the email input field is getting floated to the left.
Paul, this line from your theme’s style.css (line 1930) is causing the issue:
#author, #email, #url {
float: left;
}
Since it might need that elsewhere, you may end up adding something like:
.event_form_field #email {
float: none;
}
Remember that in order for this to work, it needs to appear **after** the style rule you’re trying to override. It might be best to place it at the end of the stylesheet.
Got it – many thanks. Have noted the point about prioritisation of rules.
Viewing 3 reply threads
The support post ‘Edit registration page – problem with form display’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.