Skip Navigation

[Resolved] set size of front-end cred form wysiwyg field

This thread is resolved. Here is a description of the problem and solution.

Problem:

How can I adjust the height of the entry area of a Cred form wysiwyg field in front-end context?

Solution:

You can try custom CSS codes, like these:

https://toolset.com/forums/topic/set-size-of-front-end-cred-form-wysiwyg-field/#post-2258089

Relevant Documentation:

This support ticket is created 2 years, 11 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 3 replies, has 2 voices.

Last updated by Paul Bowman 2 years, 11 months ago.

Assisted by: Luo Yang.

Author
Posts
#2257727

How can I adjust the height of the entry area of a Cred form wysiwyg field in front-end context? From what I can find in documentation, there doesn’t appear to be a way to set this value in the cred_field shortcode. Can it be done via functions.php using the form ID?

#2258089

Hello,

You can try custom CSS codes, like these:

.mce-container iframe{
    height: 30px !important;
    min-height: 30px !important;
}
#2260231

Thank you, that works of course.

I think my idea was that customizing the editor must be relatively straightforward by some means (which Toolset might facilitate working with), but I realize now that my assumptions reflects ignorance of TinyMCE. I need to study this further. Thanks.

#2260233

My issue is resolved now. Thank you!