Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #524464

    Hi, how can I center align the submit button in a contact form element?

    Thanks

    #524555

    Hey DROR!

    Please try

    
    p.form_element {
    margin: 0 auto;
    }

    and let us know if that helps

    Cheers!
    Basilis

    #524576

    That did something to the margins between the fields but nothing about aligning the button to the center…

    #525122

    Hey!

    “Page not found” and theme seems to be switched to default theme. Can you please check your link once again? :)

    Regards,
    Yigit

    #525253

    Sorry about that, had some issues and moved the site.

    #525432

    Hi, I would also like to make the following changes if possible:

    1. reverse the button colors so it would be green on default and blue on hover.
    2. Change the button font so it would be the same as the rest of the page (font name is – ALEF).
    3. Change the dropdown box color to #00a59b with 80% opacity – http://screencast.com/t/owi5LfaCUv
    4. Make the dropdown selection box appear below the field instead of on the far right as it is now – http://screencast.com/t/owi5LfaCUv

    Thanks.

    #526833

    Hi!

    1. Use this code in Quick CSS field:

    input.button {
    background-color: green !important;
    }
    and for hover:
    input.button:hover {
    background-color: blue !important;
    }
    

    2. Use this code:

    input.button {
    font-family: ALEF;
    }
    

    3. Not sure what you mean, but try this:

    #top .avia_ajax_form .select {
    background-color: rgba(0,0,0,0.8);
    }
    

    You need to change hex code (#00a59b) to rgb code.

    4. I think this dropdown selector is not controlled by the theme, but by browser and in this case it won’t be easily possible.

    Would be best to open separate tickets for different questions in the future. Thank you!

    Regards,
    Andy

    #526892

    Thanks, about #3, it didn’t change the dropdown color but the background of the field itself – http://screencast.com/t/u6KbnMQK

    #527812

    Hey!

    Try this:

    option {
        background: #00a59b;
        opacity: 0.8;
    }

    Regards,
    Ismael

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