Support › Forums › Cian – HTML Template › External Link in Navigation Bar › Reply To: External Link in Navigation Bar
August 5, 2014 at 6:45 am
#3882
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