How to theme node delete page in drupal?

时间:2015-04-23 05:28:24

标签: drupal drupal-7

I just want to theme to node delete page in Drupal 7 . but it doesn't seems to working with template in new theme which is active now .I have made template page in theme and made code in template.php based on the form_id . The same thing I did for other forms like node create form for different different content types . But for delete a node this is not working . anyone knows the process to do this .

1 个答案:

答案 0 :(得分:1)

我想用"主题删除页面",你的意思是编写自定义CSS规则,只影响用于删除节点的确认步骤页面。

然后,你可以用这样的规则来做到这一点:

body.page-node-delete .theSelectorsYouNeed {
  color: red; /* ... + any rules you need */
}

Drupal'注射'一些依赖于上下文的CSS类到模板的body标记。例如:.not-front.not-logged-in,...以及您需要的.page-node-delete

Source