• Resolved DBZEROONE

    (@dbzeroone)


    I’m wondering if there’s a trick to using an image for the email submit button? Here’s my CSS:

    .jzzf_email_button{
    background: transparent url('images/submit.png') no-repeat !important;
    border:none !important;
    width:96px;
    height:33px;
    }

    While this adds my image to the background, I can still see the default styling on top of it and the word “send”. Any suggestions?

    http://wordpress.org/extend/plugins/jazzy-forms/

Viewing 1 replies (of 1 total)
  • Thread Starter DBZEROONE

    (@dbzeroone)

    Ok nevermind. I figured it out…

    I simply removed the title “Send” from the email button element in the Jazzy Forms control panel. As for the background colors, my starter theme (underscores) had some box shadows applied to the default buttons. Here’s my final CSS if anyone is interested:

    .jzzf_email_button{
    background: transparent url('images/submit.png') no-repeat !important;
    border:none !important;
    width:96px;
    height:33px;
    box-shadow:none !important;
    -moz-box-shadow:none !important;
    -webkit-box-shadow:none !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Graphic Image for Email Submit button’ is closed to new replies.