Page adds removes the hovered class/navbar - bootstrap

Hi There! I am working on a website for a friend and decided to use a bootstrap template. Everything is working very well except that when you barely scroll down (about 50-80px) the page jumps and the navbar goes up and down. I realize that there is an issue with the slider section and it adds and removes the hovered class. I am just not sure how to fix it… : (

http://ladykickboxing.com/roc/conbiz-template/template.php

it’s not a slider issue, the problem is that the .navbar becomes fixed after scroll and is then removed from the normal document flow

.affix {
  position: fixed;
}

solution:

1 Like