Hamburger-balance
-
List Item #1
This is the subhead -
List Item #2
This is the subhead
Imran's Frosted Glass Effect
Sub Header Content
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
JIM FAHAD TUTORIAL.
WEB DESIGNER
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
Lorem ipsum dolor sit amet
consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
WE LIVE IT, YOU’LL LOVE IT!
Position yourself
in the
Heart
of
Georgian Bay.
Website Design
Logo Design
Custom Icons
North Simcoe Farm Fresh
Website Design
Logo Design
Custom Icons
North Simcoe Farm Fresh
Website Design
Graphic Design
Ec. Dev. Corp. of North Simcoe
CUSTOM CSS TO MAKE CTA WIDGET HORIZONTAL LAYOUT
INSET BORDER WITH CUSTOM CSS
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
OFFSET MEDIA CAROUSEL BY FRANK TIELEMANS
https://www.youtube.com/watch?v=P6D-RDjutCk
For the custom CSS, see page layout advanced section
City locations
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
Passes
Tickets
Specials
Plan Your Visit
NOTE: THE CAROUSEL IMAGES ONLY DISPLAY WHEN VIEWING PAGE WHEN NOT LOGGED IN
Code below is for making header/navigation disappear on scroll down and reappear on scroll up. The header is have two sections. The first is for the logo/navigation. Under Advanced, z-index is 199 and CSS ID is stickyheaders. Under Motion Effects, make it sticky top. The second contains an html widget with the below code.
<script>
document.addEventListener(‘DOMContentLoaded’, function() {
jQuery(function($) {
var mywindow = $(window);
var mypos = mywindow.scrollTop();
let scrolling = false; /* For throlling scroll event */
window.addEventListener(‘scroll’, function() {
scrolling = true;
});
setInterval(() => {
if (scrolling) {
scrolling = false;
if (mypos > 40) {
if (mywindow.scrollTop() > mypos) {
$(‘#stickyheaders’).addClass(‘headerup’);
} else {
$(‘#stickyheaders’).removeClass(‘headerup’);
}
}
mypos = mywindow.scrollTop();
}
}, 300);
});
});
</script>
<style>
#stickyheaders{
transition : transform 0.34s ease;
}
.headerup{
transform: translateY(-120px); /*adjust this value to the height of your header*/
}
</style>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.