Passer la navigation

[Résolu] set size of front-end cred form wysiwyg field

Ce fil est résolu. Voici une description du problème et la solution proposée.

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 Il y a 4 years, 5 months. 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 -

Fuseau horaire du supporter : Asia/Hong_Kong (GMT+08:00)

Ce sujet contient 3 réponses, a 2 voix.

Dernière mise à jour par Paul Bowman Il y a 4 years, 5 months.

Assisté par: Luo Yang.

Auteur
Publications
#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!