Hello people!
I'm trying to make a new header block with logo and navbar at the top without good results. I want something similar like the JA Nuevo template http://ja-nuevo.demo.joomlart.com/
in my t3 bs3 blank template.
For easier way i use for now custom html module for logo and a free joomla responsive extension for my menu.
I think the problem is that i use span inside the block. here is what i did:
newheader.css
<?php if ($this->countModules('newheader')) : ?>
<!-- NEW HEADER -->
<div class="row">
<div class="span6">
<jdoc:include type="modules" name="<?php $this->_p('newlogo') ?>" />
</div>
<div class="span6">
<jdoc:include type="modules" name="<?php $this->_p('mainnavnew') ?>" />
</div>
</div>
<!-- //NEW HEADER -->
<?php endif ?>
I write it also in default layout and new position in xml file:
default.css
<?php $this->loadBlock('enarxi') ?>
Templatedetails.xml
<position>newlogo</position>
<position>mainnavnew</position>
I can see my new block in backend in template options but when i put my modules there nothing happens.
What im doing wrong? I just want a new header block that i will use a custom html module for my logo (responsive) and another one right to it for my navigation.
Any help will be good!
Thanks for your time people!