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

    Hi,

    How can I turn off the shadow effect on the contact form active field?
    And how can I change the contact form submit button, like my fullwidth button style?
    Or can I use the fullwidth button element to submit and hide the original contact form submit button?

    Thank you
    Best Regaards,
    Peter

    #558633

    Hi Peter!

    Send us a link to your page and we’ll take a look. You can set your reply as private if you wish.

    Best regards,
    Elliott

    #558696

    Hi Elliot!

    This is the page.

    Thank you
    Peter

    #558767

    Hey!

    Try adding this code to the Quick CSS:

    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
        outline: none;
        box-shadow: none;
    }
    
    #top .avia_ajax_form input.button {
        width: 100%;
        padding: 20px;
        font-size: 22px;
        color: black;
        background: white;
        border: 1px solid black;
    }
    
    #top .avia_ajax_form input.button:hover{
        color: black;
        background: white;
    }

    Cheers! 
    Josue

    #564730

    Thank you, its work, nice…

    But I have one more question:
    How can I do same hover effect to submit button like fullwidth button ?
    Its not border, its something else… how its work and how can I do same?

    Thank you
    Peter

    #564801

    Hey!

    Please add following code to Quick CSS

    #top .avia_ajax_form input.button:hover {
        border-width: 2px;
        padding-bottom: 19px;
    }

    Cheers!
    Yigit

    #564816

    Hey Yigit!

    I think its not 2px border on fullwidth button its someting else… or just smoother?
    I put your code, please check the page. Thank you!

    Best Regards,
    Peter

    #565783

    Hey!

    Why don’t you want to use the submit button? it looks same to me however i see the button jump 2px when you hover… we can help you fix this. Please send us your wordpress admin details in a private message so we can login and take a look at it.

    If you like to use a full width button in place of original submit button it requires a lot of customization to the core files you can hire a freelancer to do this job.

    Regards,
    Vinay

    #565786

    Hi

    I want to use the submit button but I would like same hover effect. Thats all :)
    Can you help me?

    Thank you
    Peter

    #565804

    Hey!

    Remove this:

    #top .avia_ajax_form input.button:hover {
        border-width: 2px;
        padding-bottom: 19px;
    }

    And add this:

    #top .avia_ajax_form input.button{
    	transition: box-shadow ease-in 0.2s;
    	box-shadow: inset 0 0 1px -1px black;
    }
    #top .avia_ajax_form input.button:hover {
    	box-shadow: inset 0 0 1px 1px black;
    }

    Cheers! 
    Josue

    #572990

    It’s same. Thank you! :)
    Please close this topic.

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Contact form submit button and shadow’ is closed to new replies.