CSS to change Form Rich Text area
Is there a way to do an width=100% on a rich text area on a form? I want to make sure the text covers the same space as the width of the fields.
Is there a way to do an width=100% on a rich text area on a form? I want to make sure the text covers the same space as the width of the fields.
Hey Taylor-
You should be able to target the rich text using the .mktoHtmlText class. I usually prefix this with form.mktoForm to help override any add'l styling that might get added from another source (though it isn't required in this case). I've also set the padding to 0px here but that might not be something that you'll need to add, depending on the rest of your CSS (it has nothing to do with it being full-width).

Here's that CSS:
form.mktoForm .mktoHtmlText {
padding: 0px !important;
width: 100% !important;
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.