Archived topic
Customize Jetpack Subscription Form
20 replies · Started by Feri on September 22, 2018
ok, this is the correct code?
#sub-section #subscribe-email input, #sub-section #subscribe-submit input[type=submit] {
width: 50% !important;
}
#sub-section #subscribe-email input {
float: left;
}
Aah yes, sorry i forgot to switch the 2nd lot of IDs
Looks like you cracked it.
Yeay!
all is ok at desktop view (email form and button position side by side) but at the mobile view is it possible to make email form and the button position become top and bottom something like this https://prnt.sc/kxdtit
You can wrap the last code in a media query like so:
@media (min-width: 769px) {
#sub-section #subscribe-email input, #sub-section #subscribe-submit input[type=submit] {
width: 50% !important;
}
#sub-section #subscribe-email input {
float: left;
}
}
thank you so much, david. done.
case closed.
Awesome. Glad to be of help.