razakenad
Hi,
- You can open the file: root/templates/ja_magz/tpls/blocks/header.php
Move the snippet of code which renders the logo part:
<!-- LOGO -->
<div class="span2 item-first spanfirst">
<div class="logo-<?php echo $logotype, ($logoimgsm ? ' logo-control' : '') ?>">
<div class="brand">
<a href="<?php echo JURI::base(true) ?>" title="<?php echo strip_tags($sitename) ?>">
<?php if($logotype == 'image'): ?>
<img class="logo-img <?php if($logoimgsm) echo 'hidden-phone'; ?>" src="<?php echo JURI::base(true) . '/' . $logoimage ?>" alt="<?php echo strip_tags($sitename) ?>" />
<?php endif ?>
<?php if($logoimgsm) : ?>
<img class="logo-img-sm visible-phone" 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 hidden-phone"><?php echo $slogan ?></small>
</div>
</div>
</div>
<!-- //LOGO -->
to underneath the main navigation like this: http://prntscr.com/jgdutx
- To change the background color of the main nav, you can add this custom css code:
.t3-mainnav {
background: #ffffff; /*change to your desired color here*/
}