PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Form buttons are empty, only on hover you see text

  1. Hello all,

    On my site: http://www.mixtape-messenger.com/send-a-mixtape-2/
    (username: koen password: meloen)

    I`ve a form existing of three steps. But as you can see, the Next, Back and SUbmit button are blanc. Only on Hover you see the text.

    Also the input fields like NAME and E-MAIL are not the same size. How come?

    Please help

    Posted 11 years ago on Tuesday December 4, 2012 | Permalink
  2. Come on guys.. I paid $ 39,- for your service.. please help me out.. i`m stuck now...

    Posted 11 years ago on Wednesday December 5, 2012 | Permalink
  3. Your theme contains this rule on line 733 of style.css

    [css]
    .button, .button:hover
    {
      font-weight: bold;
      color: #ffffff;
      text-transform: uppercase;
    }

    However, there is no background color defined for the button. That only happens on hover, on line 738 of style.css. You can add this to your theme's stylesheet to give the button a background color:

    [css]
    .gform_wrapper .button {
      background-color: #666666;
    }

    Once you see that you can override your theme's stylesheet, you can change that value to anything that looks good to you.

    Posted 11 years ago on Thursday December 6, 2012 | Permalink