• Resolved boabo

    (@boabo)


    Hi,

    The textarea of my TinyMCE cannot be resized once i drag bottom right corner. Theme author said to contact cmb2. Do you know any css to allow resize: vertical; again? Thank you

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Is the CMB2 usage something you set up yourself for your website? Or is it something that is bundled with the theme?

    Asking because i’ve checked our codebase and I’m not seeing anything that touches TinyMCE resizing.

    So I’m wondering if it’s a field that they set up, or something you set up where we could easily get the CMB2 config being used here.

    Thread Starter boabo

    (@boabo)

    Hey, thanks for your prompt reply. I found the issue: css was freezing height to 200px. So i changed to 350px. Removing !important didn’t solve my issue.

    .cmb-form .wp-editor-container iframe {
    height: 200px !important;
    }
    .mce-edit-area iframe {
    max-height: 300px;
    }

    —- updated css —–

    .cmb-form .wp-editor-container iframe {
    height: 350px !important;
    }
    .mce-edit-area iframe {
    max-height: 350px;
    }

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Curious if those are custom styles added by someone else, or potentially from an older version of CMB2. I’m not seeing those selectors in our github repo.

    Just trying to make sure you don’t lose these edits if something gets updated from us.

    Thread Starter boabo

    (@boabo)

    I found version 2.7.0 – 2020-01-21 in cmb2/changelog.md, if this helps.

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    that’s our latest, so I’m assuming until shown otherwise, that this is some custom CSS added by someone else.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘TinyMCE resize’ is closed to new replies.