Skip to main content
July 17, 2018
Question

Rich Text being restricted by box

  • July 17, 2018
  • 2 replies
  • 1874 views

Can some please help explain why my rich text is condensing to two lines rather than one. 

The Field Width is adequate...

...Any thoughts?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

SanfordWhiteman
Level 10
July 17, 2018

Please provide your URL. Can't troubleshoot a screenshot.

July 18, 2018

Thanks Sanford.  Here it is....Contact Leapfrog | Sales and Support | Offices and Locations | Leapfrog

SanfordWhiteman
Level 10
July 18, 2018

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%;

  }

}

July 18, 2018

Sorry, how do I convert this to html

SanfordWhiteman
Level 10
July 18, 2018

It's CSS, you add it to your global CSS file (which is where the other breakpoint rules are set).