Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter djibux

    (@djibux)

    Great! Thanks a lot.

    Thread Starter djibux

    (@djibux)

    Hello,

    You are totally right, using custom CSS rules is better. Just changed that ??

    The website (https://sto-live.com/) is not broken anymore. There were two issues:

    • The green “subscribe” button was displayed on the bottom right of the screen (instead of next to the email field)
    • The email field was almost 100% wide

    You can view those issues by disabling the latest embedded CSS (#19), the one with the following:

    .subscribe-form-wrapper .jetpack_subscription_widget {
    	position: relative;
    	padding: 0;
    	margin: 0 auto;
    	width: 720px;
    }
    
    /* 960px > x */
    @media only screen and (max-width: 959px) {
    	.subscribe-form-wrapper .jetpack_subscription_widget {
    		width: 688px;
    	}
    }
    
    /* 769px > x */
    @media only screen and (max-width: 767px) {
    	.subscribe-form-wrapper .jetpack_subscription_widget {
    		width: 100%;
    	}
    }
Viewing 2 replies - 1 through 2 (of 2 total)