1. Thomash86
  2. Sherlock Holmes
  3. Commercial Templates
  4. Tuesday, 22 August 2017
  5.  Subscribe via email
Hi

i´ve a other menu chased.
but when i swipe from left to right i see the background an the "old" menu.

neu.szabo.co.at

it doesn't work with display: none

please help me (again) :)

thanks a lot
Accepted Answer Pending Moderation
0
Votes
Undo
Hello

One you have a screenshot of this issue? A bit of a shot in the dark but could try adding the following to the Custom CSS field of your templates parameters...

.slideout-toggle {
display: none;
}


Ciarán
  1. more than a month ago
  2. Commercial Templates
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
Hi

Therefore is anything changed :/
See the Video

https://free.hbox.at/index.php/s/prFFGEY1lbCmsLx

Thanks
  1. more than a month ago
  2. Commercial Templates
  3. # 2
Accepted Answer Pending Moderation
0
Votes
Undo
Hello

As you are using a 3PD mobile menu you can remove the template mobile menu by removing the following from your templates scripts.php (../templates/j51_london/inc/scripts.php LINE 7-58)..

// Mobile Menu
if($mobile_menu_type == "slicknav") {
if($this->params->get('hornavPosition') == 'slicknav') {
if ($this->countModules( 'hornav' )) :
$document->addScript('templates/'.$this->template.'/js/jquery.slicknav.js', 'text/javascript');
$document->addScriptDeclaration('
jQuery(\'.hornavmenu .hornav\').slicknav();
');
endif;
} else {
$document->addScript('templates/'.$this->template.'/js/jquery.slicknav.js', 'text/javascript');
$document->addScriptDeclaration('
jQuery(document).ready(function() {
jQuery(\'.hornavmenu .hornav\').slicknav();
});
');
}
} else {
$document->addScript('templates/'.$this->template.'/js/slideout.js', 'text/javascript');
$document->addScriptDeclaration('
jQuery(document).ready(function() {

var slideout = new Slideout({
\'panel\': document.getElementById(\'body_panel\'),
\'menu\': document.getElementById(\'slideout\'),
\'padding\': 256,
\'tolerance\': 70
});
document.querySelector(\'.slideout-toggle\').addEventListener(\'click\', function() {
slideout.toggle();
});

jQuery(\'.slideout-menu li.parent > a\').on(\'click\', function(){
jQuery(this).removeAttr(\'href\');
var element = jQuery(this).parent(\'li\');
if (element.hasClass(\'open\')) {
element.removeClass(\'open\');
element.find(\'li\').removeClass(\'open\');
element.find(\'ul\').slideUp();
}
else {
element.addClass(\'open\');
element.children(\'ul\').slideDown();
element.siblings(\'li\').children(\'ul\').slideUp();
element.siblings(\'li\').removeClass(\'open\');
element.siblings(\'li\').find(\'li\').removeClass(\'open\');
element.siblings(\'li\').find(\'ul\').slideUp();
}
});
});
');
}


Ciarán
  1. more than a month ago
  2. Commercial Templates
  3. # 3
Accepted Answer Pending Moderation
0
Votes
Undo
perfect, thanks again :) :) :) :)
  1. more than a month ago
  2. Commercial Templates
  3. # 4
  • Page :
  • 1


There are no replies made for this post yet.
Be one of the first to reply to this post!