帮助 WordPress 联系表格 7 单选按钮上的输入宽度问题?
大家好,
我想自定义联系表 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将类别分配给设置页面上表单模板中的单选按钮。然后打开 Contact Form 7 的 CSS 样式表文件,可能位于:
并为带有“radio”类的输入设置 css 规则:
要将类分配给无线电输入或复选框输入,请使用:
上面的代码将生成标记:
了解更多信息联系 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:
and setup css rules for the input with class "radio":
To assign a class to radio input or to checkbox input use:
Above code will generate the markup:
Learn more at Contact Form 7 website.
Good luck!