gpt4 book ai didi

css - 如何设置 Gravity Forms 段落文本元素的高度

转载 作者:太空宇宙 更新时间:2023-11-03 17:35:04 25 4
gpt4 key购买 nike

我能够使用以下命令在我们的 WP 入门主题 styles.css 底部使用 CSS 设置边框颜色,但高度和行数似乎不起作用 - 谁能告诉我正确的语法(注:我使用 gf_right_half 作为 CSS 类名:

body #gform_wrapper_11 .gform_body .gform_fields #field_11_8.gfield textarea {
border: 1px solid green;
width: 100%;
height: 5px !important;
rows: 5 !important;
}

最佳答案

我来晚了一点,但为了将来引用:

在你的主题的 functions.php 添加:

// Change textarea rows to 2 instead of 10
add_filter( 'gform_field_content', function ( $field_content, $field ) {
if ( $field->type == 'textarea' ) {
return str_replace( "rows='10'", "rows='2'", $field_content );
}
return $field_content;
}, 10, 2 );

关于css - 如何设置 Gravity Forms 段落文本元素的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29888007/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com