Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #368669

    Hey guys,
    I created a custom class ‘home’.
    I am trying to align the submit button to the right of the 3rd field…EMAIL. So it all falls on one line.
    Yet something is missing. Any direction would help thanks!

    #368771

    Hey Justin!

    Thank you for using Enfold.

    Use 1/1 column layout instead of 1/2 then use css to center align the form. The width of the current column is not sufficient to contain the form fields and the submit button.

    Cheers!
    Ismael

    #368778
    This reply has been marked as private.
    #369283

    Hey!

    You can try this:

    .home div#av_section_1 p.form_element:last-child {
    width: auto;
    clear: none;
    margin-left: 2%;
    top: 25px;
    }
    
    .home div#av_section_1 .form_element .button {
    width: 100%;
    }
    
    .home div#av_section_1 .avia_ajax_form .form_element_third {
    width: 26%;
    }

    Apply a unique id on the color section which contains the form fields. Replace the div#av_section_1 id.

    Regards,
    Ismael

    #369300
    This reply has been marked as private.
    #369712
    This reply has been marked as private.
    #370386

    Hi!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 480px) {
    .home div#av_section_1 .avia_ajax_form .form_element_third {
    width: 100% !important;
    }}

    Regards,
    Yigit

    #370405
    This reply has been marked as private.
    #370407

    Hi!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 480px) {
    .home div#after_section_1 {
    padding-top: 220px;
    }}

    Cheers!
    Yigit

    #370413
    This reply has been marked as private.
    #370415

    Hi!

    Following code should fix it

    @media only screen and (max-width: 480px) {
    .home div#av_section_1 .form_element input.button {
    margin-top: -20px!important;
    margin-bottom: 10px;
    }}

    Regards,
    Yigit

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.