Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #407156

    I have two questions on form format

    1. Is there a way to control the size of the input fields or the size of the form?

    2. Is there a way to center the title of the form and center the submit button?

    Thanks

    #407398

    Hey svreatt!

    I’m sure there is, could you please provide a link to the page in question so that we can have a look?

    Regards,
    Rikard

    #407399
    #407422

    Hey!

    Use this code in Quick CSS:

    /* Center Title and Button */
    .avia_ajax_form h3 {
        text-align: center;
    }
    .avia_ajax_form input.button {
        margin: 0 auto !important;
        display: block;
    }
    
    /* Adjust Fields */
    #top .avia_ajax_form .text_input, #top .avia_ajax_form .select, #top .avia_ajax_form .text_area {
        padding: 6px;
    }

    Cheers!
    Josue

    #407484

    Awesome!

    Hopefully these are the last two questions.

    1. Can you adjust the space between the form elements?

    2. Can you put the form elements title inside the element instead of on top. Trying to save space.

    Thanks

    #407578

    Hey!

    1. This will do it:

    .avia_ajax_form p {
        margin-top: 0;
    }

    2. Unfortunately placeholders are not currently available for the Enfold form.

    Best regards,
    Josue

    #407591

    Thanks, you guys are the best.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Form size’ is closed to new replies.