请问如果在首页制作通栏

如果网站是三栏式的,在首页应该如何制作横贯三栏的通栏,其他的页面没有通栏。

用view 可以做到

用view 可以做到

------------------------------------------------

能不能稍详细一点

view做区块是方便,但是做通栏你能提示一下吧。
你的qq是多少,我的是93505116可以聊聊吗?

先在 theme 的 info 文件里 定义

先在 theme 的 info 文件里 定义 regions :tonglan1 tonglan2 tonglan3
再在主页你想要通栏的位置里加上code ,

<?php if ($tonglan1|$tonglan2|$tonglan3) : ?>
<div class="content-top-block">

<div class="tonglan1">
<?php print $tonglan1; ?>
</div>
<div class="tonglan2">
<?php print $tonglan2; ?>
</div>
<div class="tonglan3">
<?php print $tonglan3; ?>
</div>

</div>
<?php endif; ?>

还有css里也要加上tonglan1 tonglan2 tonglan3格式,
再把view做的区块摆到定义的位置regions上。
这个例子是三通栏。

------------------------------------------------

谢谢

我是程序员,原来用过xoops,现在准备研究drupal,有空多聊聊。正在用用drupal搭一个网站,做完后告诉你。