Help with AS002039 Template - Joomla! Forum - community, help and support
i'm using as002039 on new website , having issue header. either company name inside bar that's circled in red or rid of bar completely. have yet able figure out either one.
can me this?

can me this?

if put link site easier people give advise.
the red box area of template module "position-1" ... text looks part of templates header in page division above.
both written template's index.php file, little harder deal with.
you make custom module header text , stick in module location "position-1" try remove top part. (there module location "position-6" in header also, hidden)
or
to remove red box area have remove or change lines 153-160 in template's php file.
<div class="row2">
<div class="content">
<div id="topmenu">
<jdoc:include type="modules" name="position-1"/>
</div>
</div>
<div class="clear"></div>
</div>
if add php conditional statement exclude module when there nothing in it...
<?php if($this->countmodules('position-1')): ?>
<div class="row2">
<div class="content">
<div id="topmenu">
<jdoc:include type="modules" name="position-1"/>
</div>
</div>
<div class="clear"></div>
</div>
<?php endif; ?>
that should trick of removing red box area....
the red box area of template module "position-1" ... text looks part of templates header in page division above.
both written template's index.php file, little harder deal with.
you make custom module header text , stick in module location "position-1" try remove top part. (there module location "position-6" in header also, hidden)
or
to remove red box area have remove or change lines 153-160 in template's php file.
<div class="row2">
<div class="content">
<div id="topmenu">
<jdoc:include type="modules" name="position-1"/>
</div>
</div>
<div class="clear"></div>
</div>
if add php conditional statement exclude module when there nothing in it...
<?php if($this->countmodules('position-1')): ?>
<div class="row2">
<div class="content">
<div id="topmenu">
<jdoc:include type="modules" name="position-1"/>
</div>
</div>
<div class="clear"></div>
</div>
<?php endif; ?>
that should trick of removing red box area....
Comments
Post a Comment