Tagged: off canvas
Viewing 2 posts - 1 through 2 (of 2 total)
-
AuthorPosts
-
December 9, 2015 at 10:39 am #782851
Hi, we’ d like:
- The off canvas menu of our site to be displayed only in mobile devices.
- Positioned next to the logo, to avoid confusions to our users with the green button on the right of the screen.
How could we do that?
Thanks in advance,
Tomas
Adam M ModeratorAdam M
- Join date:
- May 2014
- Posts:
- 5159
- Downloads:
- 33
- Uploads:
- 66
- Thanks:
- 95
- Thanked:
- 1271 times in 1235 posts
December 10, 2015 at 4:58 am #791722Hi @cnventures,
Please follow these steps :
- Open file templatesuberacmheadertmplstyle-5.php and move this block :
<?php if ($tplparams->get('addon_offcanvas_enable')) : ?> <?php $t3doc->loadBlock ('off-canvas') ?> <?php endif ?>
then search for the logo part :
<?php if($logoImage): ?> <div class="logo-image"> <a href="<?php echo $logourl ?>" title="<?php echo strip_tags($sitename) ?>"> <img class="logo-img" src="<?php echo $logoImage; ?>" alt="<?php echo strip_tags($sitename) ?>" /> <span><?php echo $sitename ?></span> </a> <small class="site-slogan"><?php echo $slogan ?></small> </div> <?php else: ?>
and place it before the logo as below :
<?php if ($tplparams->get('addon_offcanvas_enable')) : ?> <?php $t3doc->loadBlock ('off-canvas') ?> <?php endif ?> <?php if($logoImage): ?> <div class="logo-image"> <a href="<?php echo $logourl ?>" title="<?php echo strip_tags($sitename) ?>"> <img class="logo-img" src="<?php echo $logoImage; ?>" alt="<?php echo strip_tags($sitename) ?>" /> <span><?php echo $sitename ?></span> </a> <small class="site-slogan"><?php echo $slogan ?></small> </div> <?php else: ?>
- Create new folder templatesuberlocaltplsblocks and copy file templatesubertplsblocksoff-canvas.php then place it in new folder. Open the file and have a look at the first line of code :
<button class="btn btn-primary off-canvas-toggle <?php $this->_c('off-canvas') ?>" type="button" data-pos="left" data-nav="#t3-off-canvas" data-effect="<?php echo $this->getParam('addon_offcanvas_effect', 'off-canvas-effect-4') ?>"> <span><?php echo JText::_( 'TPL_MENU' ); ?></span> <i class="fa fa-bars"></i> </button>
change attribute data-pos="right" to data-pos="left".
- Open file templatesubercsscustom.css (if you don’t have this file, just create a new one) then add this code :
@media (min-width: 768px) { .off-canvas-toggle { display: none; } } @media (max-width: 768px) { .off-canvas-toggle { float: left; border: none; margin-right: 20px; } }
-
AuthorPosts
Viewing 2 posts - 1 through 2 (of 2 total)
This topic contains 2 replies, has 2 voices, and was last updated by Adam M 8 years, 11 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum