Joomla可变跨度网格

时间:2014-03-05 02:51:58

标签: php twitter-bootstrap joomla

我的joomla 3.1模板与bootstrap有问题。 我不知道php变量或其他东西。问题是如果我在正确的位置打开某个span3模块,如何将内容span12更改为span 9?

[------------- content span12 ------------] [----- content span9 -------] [module span3]

我发现了这个: Basic php to set column width in Joomla但是我没理解。有人可以帮助我做我必须做的事吗?谢谢。

1 个答案:

答案 0 :(得分:0)

在模板顶部添加:

<?php
$main_width = 12;
if ($this->countModules('right'))
  $main_width = 9;
?>

然后输出内容修改:

<div class="main-content span<?php echo $main_width; ?>">--Content--</div>
<?php if ($this->countModules('right') : ?>
  <div class="right-module span3">--Right modules output--</div>
<?php endif; ?>