Hi,
I checked your site and I can see why the code I provided is not working.
There are syntax erros in your js and css code.
In your js code you added comment without enclosing it in /*..*/
eg. This is incorrect
collapses hamburger menu when clicking menu item
(function($){
$('.x-navbar .x-nav a').click(function(){
$('.x-nav-collapse').toggleClass('in').css('height', 0);
$('.x-btn-navbar').toggleClass('collapsed');
});
})(jQuery);
It should be
/* collapses hamburger menu when clicking menu item */
(function($){
$('.x-navbar .x-nav a').click(function(){
$('.x-nav-collapse').toggleClass('in').css('height', 0);
$('.x-btn-navbar').toggleClass('collapsed');
});
})(jQuery);
I can also see this in your css codes.
Removes Title & Minimizes Spacing in Blog Posts
.single header.entry-header {
display: none;
}
.single .entry-content.content {
margin-top: -20px;
}
@media (max-width: 979px) {
.x-navbar-fixed-top {
position: fixed !important;
}
Please change this to
/* Removes Title & Minimizes Spacing in Blog Posts */
.single header.entry-header {
display: none;
}
.single .entry-content.content {
margin-top: -20px;
}
@media (max-width: 979px) {
.x-navbar-fixed-top {
position: fixed !important;
}
} /* <- this bracket was missing */
Thanks