我的 Drupal 主题在中间设置了一个笔记本脊椎图像,将其拆分为 50/50 页面。
问题是,在几页上,我想摆脱那个笔记本书脊并使用整个页面。我在 Drupal.org 上环顾四周,但没有运气。
这是对 page.tpl 或 style.css 的编辑吗?
谢谢,
蒂姆
在不需要脊椎的页面上的 body 标记中添加一个 id 并为其添加第二个 CSS 规则,如下所示:
的HTML:
<body id="nospine">
<div id="page"><!-- your content here --></div>
CSS:
#page {
background:#fff url(spine.gif) top repeat-y; /* normally with spine */
}
#nospine #page {
background:#fff; /* without the spine image */
}
除非您将“nospine”ID 添加到正文标签,否则所有页面现在都将显示书脊图像,很简单!