Hi,
<blockquote> need to change the height of the logo area. </blockquote>
Try to put below codes into templates/ja_fubix/css/custom.css:
.logo {
width: 60px; /*Change with your value of width/height*/
height: 50px;
}
* Make sure you created a blank custom.css file & called it in templates/ja_fubix/etc/assets.xml by adding line:
<file>css/custom.css</file>
<blockquote>I need to add another module position above the menu</blockquote>
You can create a new position in header block by adding below codes into templatesja_fubixtplsblocksheader.php.
<?php if ($this->countModules('new_position')) : ?>
<div class="new_position">
<jdoc:include type="modules" name="<?php $this->_p('new_position') ?>" style="raw" />
</div>
<?php endif ?>
* Try backup your files before changing & adjusting the css style if needed.
And our T3 documentation can be helpful for you: http://t3-framework.org/documentation/layout-system.html