Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #526800

    Hi there,

    I’m using this custom “white-button’ on my site and I want to replace the standard Gravity Forms submit button by this one.
    Can that be done by Quick CSS?

    The button:
    #top .white-button .avia-button.avia-color-dark {
    border: 3px solid #000;
    color: white;
    border-color: white;
    font-size: 15px !important;
    font-weight: bold !important;
    }

    #526980

    Hey MulderMind!

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

    Cheers!
    Elliott

    #527017

    Hi Elliot,

    The page in de private content.
    Currently I use an image of the button I styled but I’d prefer to use a ‘real’ button.

    It’s in the

    #527836

    Hi!

    Use this codes:

    #top .gform_button {
        border: 2px solid;
        border-color: #fff;
        border-width: 2px !important;
        background-color: transparent;
        color: inherit;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    
        margin: 0;
        padding: 16px 20px;
        border-radius: 2px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        font-weight: normal;
        font-size: 14px;
        min-width: 142px;
        outline: none;
    }
    
    #top .gform_button:hover{
        background-color: rgba(255,255,255,0.4);
        color: #ffffff;
    }

    Adjust as needed.

    Regards,
    Josue

    #528348

    Thanks, that did the trick!

    #528359

    You are welcome, glad to help :)

    Regards,
    Josue

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