• Resolved Taparitas

    (@taparitas)


    Hi there,

    I am new to using this FS plugin – love it BTW!

    I am trying to style the Submit button and I am getting a red bottom border even though I changed the default background to gray – here is the link to my test mock page (not in production):

    http://dotwdesign.com/iwantyou

    This is the current CSS setting for the Submit Button field under the Styles tab:cursor:pointer; margin:0; background: gray;

    Any ideas of how to fix this to make that red line go away?

    Appreciated!

    Martin

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi Martin, I had a look at your website. You currently have the following code that displays the red line

    button, input[type="submit"], input[type="button"], input[type="reset"] {
        -moz-border-bottom-colors: none;
        -moz-border-left-colors: none;
        -moz-border-right-colors: none;
        -moz-border-top-colors: none;
        background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #e05d22 0%, #d94412 100%) repeat scroll 0 0;
        border-color: -moz-use-text-color -moz-use-text-color #b93207;
        border-image: none;
        border-radius: 2px;
        border-style: none none solid;
        border-width: medium medium 3px;
        color: #fff;
        display: inline-block;
        padding: 11px 24px 10px;
        text-decoration: none;
    }

    The following code #b93207 which is red is what you need to change.

    -moz-use-text-color -moz-use-text-color #b93207;

    Either delete the color or add maybe grey which blends with the button.

    Thread Starter Taparitas

    (@taparitas)

    Many thanks for pointing me in the right direction….what I ended up doing is the following – I added this to my styles.css file:

    input[type="submit"],
    input[type="button"],
    input[type="reset"] {
    	border-bottom: none !important;
    }

    and it worked!

    Thanks,

    Martin

    Hi Martin I am happy to hear :).

    If you don’t need any more help can you mark this support thread as resolved.

    Thank you

    Thread Starter Taparitas

    (@taparitas)

    Marked as resolved.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Submit button background’ is closed to new replies.