Title: wolfango's Replies | WordPress.org

---

# wolfango

  [  ](https://wordpress.org/support/users/wolfango/)

 *   [Profile](https://wordpress.org/support/users/wolfango/)
 *   [Topics Started](https://wordpress.org/support/users/wolfango/topics/)
 *   [Replies Created](https://wordpress.org/support/users/wolfango/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/wolfango/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/wolfango/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/wolfango/engagements/)
 *   [Favorites](https://wordpress.org/support/users/wolfango/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MC4WP: Mailchimp for WordPress] Submit button hovers over text input](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/)
 *  [wolfango](https://wordpress.org/support/users/wolfango/)
 * (@wolfango)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/page/2/#post-7013124)
 * For the space in between you need the margin of the textarea, [see here](http://postimg.org/image/xozdu0jed/)
 *     ```
       button, input, select, textarea {
           font-size: 100%;
           margin: 0 0 10px;
           padding: 5px 30px 5px 12px;
           vertical-align: baseline;
           width: 100%;
       }
       ```
   
 * For the colour, that is the property of background, so look at rgba versions 
   of red or anything you want. This should work:
 *     ```
       form.mc4wp-form input[type="submit"], .mc4wp-form form input[type="submit"] {
           background: rgba(17, 17, 17, 0.8) none repeat scroll 0 0;
           border: medium none;
           color: #fff;
           font-size: 12px;
           font-weight: 700;
           line-height: 34px;
           padding: 5px 30px 5px 12px;
           position: inherit;
           right: 0;
           text-transform: uppercase;
           top: 0;
           width: 100%;
       }
       ```
   
 * Got to go now… Good luck.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MC4WP: Mailchimp for WordPress] Submit button hovers over text input](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/)
 *  [wolfango](https://wordpress.org/support/users/wolfango/)
 * (@wolfango)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/page/2/#post-7013122)
 * Is [this](http://postimg.org/image/dycxq3ot7/) what you want to achieve? I’ve
   edited your code in firebug and it seems to work.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MC4WP: Mailchimp for WordPress] Submit button hovers over text input](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/)
 *  [wolfango](https://wordpress.org/support/users/wolfango/)
 * (@wolfango)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/page/2/#post-7013120)
 * You’re using a different tag so try the following:
 * .mc4wp-form form input[type=”submit”] {
    position: inherit !important; }
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MC4WP: Mailchimp for WordPress] Submit button hovers over text input](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/)
 *  [wolfango](https://wordpress.org/support/users/wolfango/)
 * (@wolfango)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/page/2/#post-7013118)
 * Hi lioneldeymier, can you post a link to your WP website so I can take a look
   at the code? Images are not very useful.
 * Here’s my site [http://wolfango.com](http://wolfango.com) and you cans see the
   mailchimp subscribe at the bottom of the page.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MC4WP: Mailchimp for WordPress] Submit button hovers over text input](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/)
 *  [wolfango](https://wordpress.org/support/users/wolfango/)
 * (@wolfango)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/page/2/#post-7013117)
 * Hi lioneldeymier, can you post a link to your WP site so I can take a look at
   the code? Images are not very useful.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MC4WP: Mailchimp for WordPress] Submit button hovers over text input](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/)
 *  [wolfango](https://wordpress.org/support/users/wolfango/)
 * (@wolfango)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/#post-7013104)
 * Install Jetpack then use the custom CSS and paste the code above… It should work.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MC4WP: Mailchimp for WordPress] Submit button hovers over text input](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/)
 *  [wolfango](https://wordpress.org/support/users/wolfango/)
 * (@wolfango)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/#post-7013013)
 * Good to know. I had the same issue…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MC4WP: Mailchimp for WordPress] Submit button hovers over text input](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/)
 *  [wolfango](https://wordpress.org/support/users/wolfango/)
 * (@wolfango)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/submit-button-hovers-over-text-input/#post-7013007)
 * Hi, create a custom css with the following:
 * .widget form input[type=submit] {
    position: inherit !important; }
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Unable to install custom theme or custom plugin](https://wordpress.org/support/topic/unable-to-install-custom-theme-or-custom-plugin/)
 *  [wolfango](https://wordpress.org/support/users/wolfango/)
 * (@wolfango)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/unable-to-install-custom-theme-or-custom-plugin/#post-6701884)
 * Did you solve the problem?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] woocommerce 1.6.1 broke SMPL wootheme shop](https://wordpress.org/support/topic/woocommerce-161-broke-smpl-wootheme-shop/)
 *  Thread Starter [wolfango](https://wordpress.org/support/users/wolfango/)
 * (@wolfango)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/woocommerce-161-broke-smpl-wootheme-shop/#post-2947779)
 * Did you fix it then? Because I did write to your customer support and someone
   else (Sven Hutchinson) admitted there was a problem. Both on this issue and another
   one concerning Google Chrome (webkit bug where 33+33+34 did not equal 100, but
   33+33+34.4). The problem is that you released an update 1.6.0 and 1.6.1 which
   was not tested on all of your templates, e.g. SMPL. I really appreciate that 
   you are trying very hard to fix all the bugs, but this update did break my SMPL
   before you released an update of the theme. Just a few days ago even your demo
   did not work properly.
 * Thank you anyway for the update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] woocommerce 1.6.1 broke SMPL wootheme shop](https://wordpress.org/support/topic/woocommerce-161-broke-smpl-wootheme-shop/)
 *  Thread Starter [wolfango](https://wordpress.org/support/users/wolfango/)
 * (@wolfango)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/woocommerce-161-broke-smpl-wootheme-shop/#post-2947776)
 * Well I did update it, but the problem is still there. The tabs just above the
   eShop in the homepage are not working… I mean the one for Staff Pick, New… Also
   the product images have a # link to nowhere.
 * W

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