Can some please help explain why my rich text is condensing to two lines rather than one.
The Field Width is adequate...
...Any thoughts?
Please provide your URL. Can't troubleshoot a screenshot.
Thanks Sanford. Here it is....Contact Leapfrog | Sales and Support | Offices and Locations | Leapfrog
You have a CSS breakpoint at 1023px. At or above that width the form is 2-column and the RTA is just in one column (width: 50%;)
.This, while inelegant, will fix it (it's very specific to your form layout so it's not ideal):
@media screen and (min-width: 0) {
/* final rich text area spans columns */
.mktoForm .mktoFormRow:nth-last-of-type(2) {
width: 100%;
}
}
Sorry, how do I convert this to html
It's CSS, you add it to your global CSS file (which is where the other breakpoint rules are set).