How to make the newsletter box and the the newsletter font smaller ?
I also want the entire newsletter section less high (white section)?
Theme: Symmetrie
PW: test1234
How to make the newsletter box and the the newsletter font smaller ?
I also want the entire newsletter section less high (white section)?
Theme: Symmetrie
PW: test1234
Hi @marcelp ,
Go to Assets > styles.css and paste this at the bottom of the file:
.section-signup .strongly-padded-row {
padding-top: 50px !important;
padding-bottom: 50px !important;
}
.signup-form__inline-container input {
font-size: 12px !important;
padding: 0.5em 15px !important;
}
@media only screen and (max-width: 767.98px) {
.section-signup .strongly-padded-row {
padding-top: 30px !important;
padding-bottom: 30px !important;
}
}
Hope it helps!
Please add below css code in bottom of assets/styles.css file
.section-signup .strongly-padded-row {
padding-top: 50px;
padding-bottom: 50px;
}
.signup-form__inline-container input {
width: 240px;
font-size: 14px;
}
.section-signup h1 {
display: none;
}
Thank you.