Saltar navegación

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

Este hilo está resuelto. Aquí tiene una descripción del problema y la solución.

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 4 years, 5 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 -

Zona horaria del colaborador: Asia/Hong_Kong (GMT+08:00)

Este tema contiene 3 respuestas, tiene 2 mensajes.

Última actualización por Paul Bowman 4 years, 5 months ago.

Asistido por: Luo Yang.

Autor
Mensajes
#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!