- This topic has 4 replies, 2 voices, and was last updated 10 years, 5 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- The forum ‘How do I …’ is closed to new topics and replies.
Events Made Easy › Forums › How do I … › Increase width of .eme-rsvp-form?
Tagged: Form Field Width RSVP
I created the eme.css file and placed it in my theme folder. I added this code to it:
.eme-required-field
{
display:none;
}
.eme-rsvp-form
{
width:100%;
}
The required field no longer shows so I did that right. But the form width is still limited. It causes the field name, if it is long, to be on two lines. I’m not a professional coder but I try my best. Please let me know if my parameters are way off. I used firebug to figure out .eme-rsvp-form.
The area above the form is 613px so I have also tried:
.eme-rsvp-form
{
width:613px;
}
But it didn’t change it.
It’s the <th scope=”row” width=”200″> that is the issue I think. I just don’t know what code to use to fix it.
Ok I have it fixed:
table.eme-rsvp-form th
{
width:300px;
}
For someone that is using this plugin with trial and error knowledge of coding, this simple width parameter would have been nice in the settings somewhere. Having to add a .css file is complicated if you don’t know how to use a file manager and ftp. Luckily my hosting is user friendly and I was able to figure this out. Just a thought. I do like this plugin and it’s functions. Thanks for all your hard work.
EME follows the CSS of your standard theme there, layout is done by the theme. I just provide the extra css for convenience reasons, but you could just as well put this in your theme css file.