the website http://guldcat.com has a template installed with a menu at the top. But I can’t get the link to load the appropriate section on the page.. Anyone has an idea what can be wrong? It uses smoothscroll.js
If I click ‘team’ in the menu bar, nothing happens. It does not scroll to “team”..
Thanks for help!!
JavaScript
x
10
10
1
` <div class="collapse navbar-collapse">
2
<ul class="nav navbar-nav navbar-right">
3
<li><a href="#home" class="smoothScroll">HOME</a></li>
4
<li><a href="#gallery" class="smoothScroll">FOOD GALLERY</a></li>
5
<li><a href="#menu" class="smoothScroll">SPECIAL MENU</a></li>
6
<li><a href="#team" class="smoothScroll">CHEFS</a></li>
7
<li><a href="#contact" class="smoothScroll">CONTACT</a></li>
8
</ul>
9
</div>`
10
will not send the link to
JavaScript
1
26
26
1
` <!-- team section -->
2
<section id="team" class="parallax-section">
3
<div class="container">
4
<div class="row">
5
<div class="col-md-offset-2 col-md-8 col-sm-12 text-center">
6
<h1 class="heading">Meet Zentro chefs</h1>
7
<hr>
8
</div>
9
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-delay="0.3s">
10
<img src="images/team1.jpg" class="img-responsive center-block" alt="team img">
11
<h4>Thanya</h4>
12
<h3>Main Chef</h3>
13
</div>
14
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-delay="0.6s">
15
<img src="images/team2.jpg" class="img-responsive center-block" alt="team img">
16
<h4>Lynda</h4>
17
<h3>Pizza Specialist</h3>
18
</div>
19
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-delay="0.9s">
20
<img src="images/team3.jpg" class="img-responsive center-block" alt="team img">
21
<h4>Jenny Ko</h4>
22
<h3>New Baker</h3>
23
</div>
24
</div>
25
</div>
26
Advertisement
Answer
Here I found a solution for you just add the jquery code and you will be done
JavaScript
1
24
24
1
$(document).ready(function(){
2
// Add smooth scrolling to all links
3
$(".smoothScroll").on('click', function(event) {
4
5
// Make sure this.hash has a value before overriding default behavior
6
if (this.hash !== "") {
7
// Prevent default anchor click behavior
8
event.preventDefault();
9
10
// Store hash
11
var hash = this.hash;
12
13
// Using jQuery's animate() method to add smooth page scroll
14
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
15
$('html, body').animate({
16
scrollTop: $(hash).offset().top
17
}, 800, function(){
18
19
// Add hash (#) to URL when done scrolling (default click behavior)
20
window.location.hash = hash;
21
});
22
} // End if
23
});
24
});
JavaScript
1
276
276
1
<!DOCTYPE html>
2
<html lang="en"><link type="text/css" id="dark-mode" rel="stylesheet" href=""><style type="text/css" id="dark-mode-custom-style"></style><head>
3
<meta charset="utf-8">
4
<title>Zentro</title>
5
6
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
7
<meta name="viewport" content="width=device-width, initial-scale=1">
8
<meta name="keywords" content="">
9
<meta name="description" content="">
10
<!--
11
12
Template 2076 Zentro
13
14
http://www.tooplate.com/view/2076-zentro
15
16
-->
17
<link rel="stylesheet" href="http://guldcat.com/css/bootstrap.min.css">
18
<link rel="stylesheet" href="http://guldcat.com/css/animate.min.css">
19
<link rel="stylesheet" href="http://guldcat.com/css/font-awesome.min.css">
20
<link rel="stylesheet" href="http://guldcat.com/css/nivo-lightbox.css">
21
<link rel="stylesheet" href="http://guldcat.com/css/nivo_themes/default/default.css">
22
<link rel="stylesheet" href="http://guldcat.com/css/style.css">
23
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500" rel="stylesheet" type="text/css">
24
</head>
25
<body data-new-gr-c-s-check-loaded="14.993.0" data-gr-ext-installed="">
26
27
<!-- preloader section -->
28
<section class="preloader" style="display: none;">
29
<div class="sk-spinner sk-spinner-pulse"></div>
30
</section>
31
32
<!-- navigation section -->
33
<section class="navbar navbar-default navbar-fixed-top" role="navigation">
34
<div class="container">
35
<div class="navbar-header">
36
<button class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
37
<span class="icon icon-bar"></span>
38
<span class="icon icon-bar"></span>
39
<span class="icon icon-bar"></span>
40
</button>
41
<a href="#" class="navbar-brand">ZENTRO</a>
42
</div>
43
<div class="collapse navbar-collapse">
44
<ul class="nav navbar-nav navbar-right">
45
<li><a href="#home" class="smoothScroll">HOME</a></li>
46
<li><a href="#gallery" class="smoothScroll">FOOD GALLERY</a></li>
47
<li><a href="#menu" class="smoothScroll">SPECIAL MENU</a></li>
48
<li><a href="#team" class="smoothScroll">CHEFS</a></li>
49
<li><a href="#contact" class="smoothScroll">CONTACT</a></li>
50
</ul>
51
</div>
52
</div>
53
</section>
54
55
56
<!-- home section -->
57
<section id="home" class="parallax-section">
58
<div class="container">
59
<div class="row">
60
<div class="col-md-12 col-sm-12">
61
<h1>ZENTRO RESTAURANT</h1>
62
<h2>CLEAN & SIMPLE DESIGN</h2>
63
<a href="#gallery" class="smoothScroll btn btn-default">LEARN MORE</a>
64
</div>
65
</div>
66
</div>
67
</section>
68
69
70
<!-- gallery section -->
71
<section id="gallery" class="parallax-section">
72
<div class="container">
73
<div class="row">
74
<div class="col-md-offset-2 col-md-8 col-sm-12 text-center">
75
<h1 class="heading">Food Gallery</h1>
76
<hr>
77
</div>
78
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-delay="0.3s" style="visibility: hidden; animation-delay: 0.3s; animation-name: none;">
79
<a href="images/gallery-img1.jpg" data-lightbox-gallery="zenda-gallery"><img src="images/gallery-img1.jpg" alt="gallery img"></a>
80
<div>
81
<h3>Lemon-Rosemary Prawn</h3>
82
<span>Seafood / Shrimp / Lemon</span>
83
</div>
84
<a href="images/gallery-img2.jpg" data-lightbox-gallery="zenda-gallery"><img src="images/gallery-img2.jpg" alt="gallery img"></a>
85
<div>
86
<h3>Lemon-Rosemary Vegetables</h3>
87
<span>Tomato / Rosemary / Lemon</span>
88
</div>
89
</div>
90
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-delay="0.6s" style="visibility: hidden; animation-delay: 0.6s; animation-name: none;">
91
<a href="images/gallery-img3.jpg" data-lightbox-gallery="zenda-gallery"><img src="images/gallery-img3.jpg" alt="gallery img"></a>
92
<div>
93
<h3>Lemon-Rosemary Bakery</h3>
94
<span>Bread / Rosemary / Orange</span>
95
</div>
96
</div>
97
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-delay="0.9s" style="visibility: hidden; animation-delay: 0.9s; animation-name: none;">
98
<a href="images/gallery-img4.jpg" data-lightbox-gallery="zenda-gallery"><img src="images/gallery-img4.jpg" alt="gallery img"></a>
99
<div>
100
<h3>Lemon-Rosemary Salad</h3>
101
<span>Chicken / Rosemary / Green</span>
102
</div>
103
<a href="images/gallery-img5.jpg" data-lightbox-gallery="zenda-gallery"><img src="images/gallery-img5.jpg" alt="gallery img"></a>
104
<div>
105
<h3>Lemon-Rosemary Pizza</h3>
106
<span>Pasta / Rosemary / Green</span>
107
</div>
108
</div>
109
</div>
110
</div>
111
</section>
112
113
114
<!-- menu section -->
115
<section id="menu" class="parallax-section" style="background-position: 50% -407px;">
116
<div class="container">
117
<div class="row">
118
<div class="col-md-offset-2 col-md-8 col-sm-12 text-center">
119
<h1 class="heading">Special Menu</h1>
120
<hr>
121
</div>
122
<div class="col-md-6 col-sm-6">
123
<h4>Lemon-Rosemary Vegetable . <span>$20.50</span></h4>
124
<h5>Chicken / Rosemary / Lemon</h5>
125
</div>
126
<div class="col-md-6 col-sm-6">
127
<h4>Lemon-Rosemary Meat <span>$30.50</span></h4>
128
<h5>Meat / Rosemary / Lemon</h5>
129
</div>
130
<div class="col-md-6 col-sm-6">
131
<h4>Lemon-Rosemary Pork <span>$40.75</span></h4>
132
<h5>Pork / Tooplate / Lemon</h5>
133
</div>
134
<div class="col-md-6 col-sm-6">
135
<h4>Orange-Rosemary Salad .. <span>$55.00</span></h4>
136
<h5>Salad / Rosemary / Orange</h5>
137
</div>
138
<div class="col-md-6 col-sm-6">
139
<h4>Lemon-Rosemary Squid . <span>$65.00</span></h4>
140
<h5>Squid / Rosemary / Lemon</h5>
141
</div>
142
<div class="col-md-6 col-sm-6">
143
<h4>Orange-Rosemary Shrimp <span>$70.50</span></h4>
144
<h5>Shrimp / Rosemary / Orange</h5>
145
</div>
146
<div class="col-md-6 col-sm-6">
147
<h4>Lemon-Rosemary Prawn . <span>$110.75</span></h4>
148
<h5>Chicken / Rosemary / Lemon</h5>
149
</div>
150
<div class="col-md-6 col-sm-6">
151
<h4>Lemon-Rosemary Seafood <span>$220.50</span></h4>
152
<h5>Seafood / Rosemary / Lemon</h5>
153
</div>
154
</div>
155
</div>
156
</section>
157
158
159
<!-- team section -->
160
<section id="team" class="parallax-section">
161
<div class="container">
162
<div class="row">
163
<div class="col-md-offset-2 col-md-8 col-sm-12 text-center">
164
<h1 class="heading">Meet Zentro chefs</h1>
165
<hr>
166
</div>
167
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-delay="0.3s" style="visibility: hidden; animation-delay: 0.3s; animation-name: none;">
168
<img src="http://guldcat.com/images/team1.jpg" class="img-responsive center-block" alt="team img">
169
<h4>Thanya</h4>
170
<h3>Main Chef</h3>
171
</div>
172
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-delay="0.6s" style="visibility: hidden; animation-delay: 0.6s; animation-name: none;">
173
<img src="http://guldcat.com/images/team2.jpg" class="img-responsive center-block" alt="team img">
174
<h4>Lynda</h4>
175
<h3>Pizza Specialist</h3>
176
</div>
177
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-delay="0.9s" style="visibility: hidden; animation-delay: 0.9s; animation-name: none;">
178
<img src="http://guldcat.com/images/team3.jpg" class="img-responsive center-block" alt="team img">
179
<h4>Jenny Ko</h4>
180
<h3>New Baker</h3>
181
</div>
182
</div>
183
</div>
184
</section>
185
186
187
<!-- contact section -->
188
<section id="contact" class="parallax-section">
189
<div class="container">
190
<div class="row">
191
<div class="col-md-offset-1 col-md-10 col-sm-12 text-center">
192
<h1 class="heading">Contact Us</h1>
193
<hr>
194
</div>
195
<div class="col-md-offset-1 col-md-10 col-sm-12 wow fadeIn" data-wow-delay="0.9s" style="visibility: hidden; animation-delay: 0.9s; animation-name: none;">
196
<form action="#" method="post">
197
<div class="col-md-6 col-sm-6">
198
<input name="name" type="text" class="form-control" id="name" placeholder="Name">
199
</div>
200
<div class="col-md-6 col-sm-6">
201
<input name="email" type="email" class="form-control" id="email" placeholder="Email">
202
</div>
203
<div class="col-md-12 col-sm-12">
204
<textarea name="message" rows="8" class="form-control" id="message" placeholder="Message"></textarea>
205
</div>
206
<div class="col-md-offset-3 col-md-6 col-sm-offset-3 col-sm-6">
207
<input name="submit" type="submit" class="form-control" id="submit" value="make a reservation">
208
</div>
209
</form>
210
</div>
211
<div class="col-md-2 col-sm-1"></div>
212
</div>
213
</div>
214
</section>
215
216
217
<!-- footer section -->
218
<footer class="parallax-section">
219
<div class="container">
220
<div class="row">
221
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-delay="0.6s" style="visibility: hidden; animation-delay: 0.6s; animation-name: none;">
222
<h2 class="heading">Contact Info.</h2>
223
<div class="ph">
224
<p><i class="fa fa-phone"></i> Phone</p>
225
<h4>090-080-0760</h4>
226
</div>
227
<div class="address">
228
<p><i class="fa fa-map-marker"></i> Our Location</p>
229
<h4>120 Duis aute irure, California, USA</h4>
230
</div>
231
</div>
232
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-delay="0.6s" style="visibility: hidden; animation-delay: 0.6s; animation-name: none;">
233
<h2 class="heading">Open Hours</h2>
234
<p>Sunday <span>10:30 AM - 10:00 PM</span></p>
235
<p>Mon-Fri <span>9:00 AM - 8:00 PM</span></p>
236
<p>Saturday <span>11:30 AM - 10:00 PM</span></p>
237
</div>
238
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-delay="0.6s" style="visibility: hidden; animation-delay: 0.6s; animation-name: none;">
239
<h2 class="heading">Follow Us</h2>
240
<ul class="social-icon">
241
<li><a href="#" class="fa fa-facebook wow bounceIn" data-wow-delay="0.3s" style="visibility: hidden; animation-delay: 0.3s; animation-name: none;"></a></li>
242
<li><a href="#" class="fa fa-twitter wow bounceIn" data-wow-delay="0.6s" style="visibility: hidden; animation-delay: 0.6s; animation-name: none;"></a></li>
243
<li><a href="#" class="fa fa-behance wow bounceIn" data-wow-delay="0.9s" style="visibility: hidden; animation-delay: 0.9s; animation-name: none;"></a></li>
244
<li><a href="#" class="fa fa-dribbble wow bounceIn" data-wow-delay="0.9s" style="visibility: hidden; animation-delay: 0.9s; animation-name: none;"></a></li>
245
<li><a href="#" class="fa fa-github wow bounceIn" data-wow-delay="0.9s" style="visibility: hidden; animation-delay: 0.9s; animation-name: none;"></a></li>
246
</ul>
247
</div>
248
</div>
249
</div>
250
</footer>
251
252
253
<!-- copyright section -->
254
<section id="copyright">
255
<div class="container">
256
<div class="row">
257
<div class="col-md-12 col-sm-12">
258
<h3>ZENTRO</h3>
259
<p>Copyright © Zentro Restaurant and Cafe
260
261
| Design: tooplate</p>
262
</div>
263
</div>
264
</div>
265
</section>
266
267
<!-- JAVASCRIPT JS FILES -->
268
<script src="http://guldcat.com/js/jquery.js"></script>
269
<script src="http://guldcat.com/js/bootstrap.min.js"></script>
270
<script src="http://guldcat.com/js/jquery.parallax.js"></script>
271
<script src="http://guldcat.com/js/nivo-lightbox.min.js"></script>
272
<script src="http://guldcat.com/js/wow.min.js"></script>
273
<script src="http://guldcat.com/js/custom.js"></script>
274
275
276
</body></html>