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%;
}
}