Hi, you have some code to calculate the height of the header for using as offset for the in-page scroll links.
in x-body.js(1831) you have:
var navbarFixedTopHeight = $('.x-navbar-fixed-top-active .x-navbar').outerHeight();
This will get the offset to use in the function animateOffset()
The problem is that as far as i can understand, this is the xtheme header css classnames and not the xpro header menu classnames.
it guess it would work if you use:
jQuery('.x-bar-fixed.x-bar-top.x-bar').outerHeight();
But those classes are not added to the element until you start to scroll.
The xpro header configuration is sticky, shrinking, and relative.
Any idea how to solve this?