We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
it's not working even on our demo: https://demo.colorlib.com/illdy/
reported by users here: https://forums.colorlib.com/t/anchor-links-not-working-properly/27703/4
The text was updated successfully, but these errors were encountered:
Found the problem: wp-content/themes/illdy/layout/js/script.js in function smoothScrollAnchors() where
function smoothScrollAnchors()
$('#sticky-wrapper' ).outerHeight( true )
returns undefined value. Changed it to this:
($('#sticky-wrapper' ).outerHeight( true ) || 0)
Not tested with sticky wrappers... but scrolling works for me again.
Sorry, something went wrong.
Hi @nodarik This bug is fixed in #323
Fixing broken scroll menus.
0c4c5db
ColorlibHQ#317
mahendrapratap4022
No branches or pull requests
it's not working even on our demo:
https://demo.colorlib.com/illdy/
reported by users here: https://forums.colorlib.com/t/anchor-links-not-working-properly/27703/4
The text was updated successfully, but these errors were encountered: