I’ve noticed a problem with the following code from neighborhood/js/functions.js Lines 299-311
headerOverlaySet: function() {
var headerWrapHeight = jQuery('.header-wrap').height();
if (jQuery('#main-container').find('#swift-slider').length === 0 && jQuery('#main-container').find('.home-slider-wrap').length === 0 && jQuery('#page-wrap').find('.page-heading').length === 0) {
jQuery('.inner-page-wrap').animate({
'padding-top': headerWrapHeight + 20
}, 300);
} else {
jQuery('.page-heading').animate({
'padding-top': headerWrapHeight + 25
}, 300);
}
}
The value headerWrapHeight is not reliably calculated. As a result, page headings appear clipped beneath the header. Perhaps this problem has only been happening in my particular case, but if anyone has noticed that their page headings are not appearing as they should, then this may be the cause. I solved the problem by modifying the headerWrapHeight variable to suit my needs.