简体   繁体   中英

Joomla template resize module position

I'm using chimera template by rockettheme. Linke: http://www.rockettheme.com/docs/joomla/templates/chimera/positions.md

I need to reduce the height of the "topfullwidth"-module-position (somewhere in the template-file, no option in settings).

I searched the index.php file for 'topfullwidth' but all I found was the following:

<?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; ?>

Where is the size set so I can change its value? I think I should look for it in a css-file, but there are quite a lot of different ones and I can't find "topfullwidth" in any of the files in the css folder of the template.

我想出了一个答案:在您的模板文件夹中有一个css文件夹,您必须在其中创建一个名为template-name _custom.css的文件。在此CSS中,您可以定义自己的样式。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM