Hey guys,
Quick question.
On my mobile site the text wraps and crowds. Any idea how to get this text to nowrap? It’s the text at the bottom of the page after the “post comment” button.
I tried this and it fixed the crowding of the second line but it still wrapped.
label#subscribe-label.subscribe-label {
white-space:nowrap!important;
}
I deleted it so I’m back to the beginning now.
Thank you, Jas
Hey!
Add this on Quick CSS:
.comment-subscription-form {
width: 120%;
}
Best regards,
Ismael
THANKS Ismael!
I also added this to keep the astericks from wrapping on the submit comment page on the mobile site. I noticed the asterisks were below “Name*” and “Email*” instead of inline.
#commentform label {
width: 120%;
}
Gracias! Jas