我正在使用Rockettheme的嵌合体模板。
链接:http://www.rockettheme.com/docs/joomla/templates/chimera/positions.md
我需要降低“ topfullwidth”模块位置的高度(在模板文件中的某个位置,设置中没有选项)。
我在index.php文件中搜索了“ topfullwidth”,但发现的只有以下内容:
<?php /** Begin TopFullWidth **/ if ($gantry->countModules('topfullwidth')) : ?>
<div id="rt-topfullwidth">
<?php echo $gantry->displayModules('topfullwidth','basic','standard'); ?>
<div class="clear">
</div>
</div>
<?php /** End TopFullWidth **/ endif; ?>
尺寸设置在哪里,以便可以更改其值?我认为我应该在css文件中查找它,但是有很多不同的文件,并且在模板的css文件夹中的任何文件中都找不到“ topfullwidth”。
最佳答案
我想出了一个答案:在您的模板文件夹中有一个css文件夹,您必须在其中创建一个名为template-name_custom.css的文件。在此CSS中,您可以定义自己的样式。