Viewing 1 replies (of 1 total)
  • Hello @balltongue,

    It looks like a CSS problem because the translation of the “subscribe” button is a little bit longer. You should try to decrease padding-left and padding-right values of that submit button.

    How to add custom CSS:

    
    // place it in functions.php of your active theme
    add_action('wpmm_head', 'wpmm_custom_css');
    
    function wpmm_custom_css(){
     // the css you need 
     echo '<style>
           .wrap form.subscribe_form input[type="submit"] { padding-left: 29px !important; padding-right: 29px !important; }
           </style>';
    }
    

    Thanks.

    • This reply was modified 8 years, 7 months ago by George J.
    • This reply was modified 8 years, 7 months ago by George J.
Viewing 1 replies (of 1 total)

The topic ‘Subscribe module looking weird.’ is closed to new replies.