帮助 WordPress 联系表格 7 单选按钮上的输入宽度问题?

发布于 2024-08-24 15:10:47 字数 137 浏览 3 评论 0原文

大家好,

我想自定义联系表 7 上单选按钮的宽度。 有没有办法告诉单选按钮与 css 中的输入字段的宽度不同。

当我在输入字段上设置宽度时,我不希望将其应用于单选按钮。

您的帮助

感谢 朱迪

Hi all fellow wordpressers

I'd like to customize the width of the radio buttons on contact form 7.
Is there a way to tell the radio buttons to be a different width to the input fields in the css.

When I put a width on the input fields I don't want this to apply to the radio buttons.

Thanks for all your help

Regards
judi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感性不性感 2024-08-31 15:10:47

您可以将类别分配给设置页面上表单模板中的单选按钮。然后打开 Contact Form 7 的 CSS 样式表文件,可能位于:

/wp-content/plugins/contact-form-7/stylesheet.css

并为带有“radio”类的输入设置 css 规则:

input.my_radio {
width: 140px;
}

要将类分配给无线电输入或复选框输入,请使用:

[radio your-eyes-color class:my_radio "brown" "green" "blue"]

上面的代码将生成标记:

<input type="radio" name="your-eyes-color" class="my_radio" value="brown" /> brown
<input type="radio" name="your-eyes-color" class="my_radio" value="green" /> green
<input type="radio" name="your-eyes-color" class="my_radio" value="blue" /> blue

了解更多信息联系 Form 7 网站
祝你好运!

You can assign a class to the radio button in your form template on the settings page. Then open the Contact Form 7's CSS stylesheet file, possibly located at:

/wp-content/plugins/contact-form-7/stylesheet.css

and setup css rules for the input with class "radio":

input.my_radio {
width: 140px;
}

To assign a class to radio input or to checkbox input use:

[radio your-eyes-color class:my_radio "brown" "green" "blue"]

Above code will generate the markup:

<input type="radio" name="your-eyes-color" class="my_radio" value="brown" /> brown
<input type="radio" name="your-eyes-color" class="my_radio" value="green" /> green
<input type="radio" name="your-eyes-color" class="my_radio" value="blue" /> blue

Learn more at Contact Form 7 website.
Good luck!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文