删除 class="form-item"来自 Drupal 表单
Drupal 自动在表单项周围添加
和类。所有表单元素都将具有属性
class = "form-item"
。如何覆盖此默认行为?如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您坚持要更改它,它会添加到 theme_form_element 中 函数。您可以通过将该函数复制到主题的 template.php 文件并将其重命名为 THEMENAME_form_element (用主题名称代替“THEMENAME”)或 phptemplate_form_element 并删除添加类的部分来覆盖它。
If you insist on changing it, it's added in the theme_form_element function. You can override it by copying that function to your theme's template.php file and renaming it THEMENAME_form_element (substituting the name of your theme in place of "THEMENAME") or phptemplate_form_element and removing the part that adds the class.
在实际经验中,这些都是有用的类,但如果您想要极其清晰的表单,您可以主题每个表单元素或主题表单:
我在这里找到的更接近您的任务(不仅是禅宗主题,而且不仅适用于用户登录块): Drupal 6 Zen 子主题上的自定义用户登录块 在“高级主题”部分,请参阅底部代码。
In real experience these are useful classes, but if you want to extremely clear form you can theme each form element or theme form:
Much closer to your task i found here (not only zen theme and not only for user login block): Custom User Login Block on Drupal 6 Zen sub-themes in "Advanced theming" part, see bottom code.