Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • The text fields created by Contact Form 7 are input tags, so you need to add a new selector to your CSS file in order to edit their width.

    Try adding this line to your CSS:
    input { width: 100px; }

    For example. You can change the width to whatever size you see fit.

    I would also advise you to add a class to check boxes and radio buttons, because these are also input tags but don’t require a long with.
    So say in Contact Form 7 you add a class of “checkbox” when using a check box or a radio button. In your style sheet add this selector:

    input.checkbox { width:auto; }

    This will revert the width to its original size: tiny.

    Hope this helps!

    Congrats for the plugin! I’d like to add my tiny and hopefully quite easy to accomplish wishlist to make it perfect:

    1. Please, don’t ask for State and ZIP code as defaults (it doesn’t look good for non-American users).
    2. If the Page where the registration form is on has text above it, don’t push the text to after the form: it would be useful to add some notes on how to register, etc.
    3. Ability to only accept Paypal/CC payments (no cash).
    4. Better HTML for the form: for example, no p align=left or b, usage of labels and no br.

    Having said that, the plugin is really great, and I assume these would be simple things to edit, right? 😉

    Good work!

Viewing 2 replies - 1 through 2 (of 2 total)