Support › Forums › Cian – HTML Template › Menu not linking to external link › Reply To: Menu not linking to external link
July 15, 2014 at 6:56 am
#3798
Keymaster
Hi,
you have to add the new menu link without the class cl-effect
in this way:
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a class="cl-effect" href="#homepage">Home</a></li>
...
<li><a href="http://www.external-link.com">External link</a></li>
...
<li><a class="cl-effect" href="#contact">Contact</a></li>
</ul>
</div>
Then, you have to edit the file custom.js (folder js). In this file, you have to change the scrollTo function. About the line 55, edit the selector. Now, the value in the next:
$('.navbar-nav li a').bind('click', function(e) {
...
});
It has to be changed to the next code:
$('.navbar-nav li a.cl-effect').bind('click', function(e) {
...
});
Regards