We moved to new unified forum!

Please post all new support queries in our New Forum.

T3 Community Discussion & Support

Let's build the best free Joomla template framework, together!
  1. Eduardo
  2. General Discussion
  3. Friday, 22 November 2013
  4.  Subscribe via email
Hello,
I need to know how to place the horizontal menu to the right of the logo. I am working with T3 Blanck template.
I want something like the attached photo.

Thanks in advance.
Attachments (1)
Comment
There are no comments made yet.
Accepted Answer Pending Moderation
0
Votes
Undo
Do you still need a solution for this?
remove <?php $this->loadBlock('mainnav') ?> from default.php
add to header.php
<header id="t3-header" class="container t3-header">
<div class="row">

<!-- LOGO -->
<div class="col-xs-12 <?php echo $logosize ?> logo">
<div class="logo-<?php echo $logotype, ($logoimgsm ? ' logo-control' : '') ?>">
<a href="/<?php echo JURI::base(true) ?>" title="<?php echo strip_tags($sitename) ?>">
<?php if($logotype == 'image'): ?>
<img class="logo-img" src="/<?php echo JURI::base(true) . '/' . $logoimage ?>" alt="<?php echo strip_tags($sitename) ?>" />
<?php endif ?>
<?php if($logoimgsm) : ?>
<img class="logo-img-sm" src="/<?php echo JURI::base(true) . '/' . $logoimgsm ?>" alt="<?php echo strip_tags($sitename) ?>" />
<?php endif ?>
<span><?php echo $sitename ?></span>
</a>
<small class="site-slogan"><?php echo $slogan ?></small>
</div>
</div>
<!-- //LOGO -->
<div class="col-xs-12 col-sm-8">
<?php $this->loadBlock('mainnav') ?>
</div>

</div>
</header>

modify mainnav.php
change <div class="container"> to <div class="row2">
Comment
There are no comments made yet.
  1. more than a month ago
  2. General Discussion
  3. # 1
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.