Currently facing a challenge with our sticky navigation.
Noticing a flickering issue on the second navigation (sticky nav) when users scroll down slowly. The problem seems to be specific to Chrome and Edge, as it doesn't occur on Firefox, IE11, and Safari.
Tried adding "-webkit-transform: translateZ(0);" to ".affix" and ".affix-top" classes without success.
What could be causing this? Any suggestions for resolution?
Link to live page here.
Provided below is the JS code for the sticky nav:
$( document ).ready(function(){
$('.full-width-anchorLinks').parent().addClass('full-browser-width-wrap');
// Rest of the JavaScript code...
$(".anchorLinks a").on('click', function(event) {
// Smooth scrolling functionality
});
});
Any assistance would be greatly valued and appreciated.
Many thanks!