I am using Semantic UI
, and when using Menu Sticky
, when it is "hidden" for resolutions lower than 630px, with the code below:
@media all and (max-width: 630px){
#top_menu {
display: none;
}
#m_btn{
display: inline-block;
padding: 0px auto;
}
}
A button is displayed, so everything works fine, but when you access the home of the site it displays the error:
"Sticky: Element is hidden, you must call refresh after element becomes visible "
Would anyone know how to fix the reported error?