user2172183
user2172183

Reputation: 49

Stop mobile menu from disappearing on scroll - WordPress

I am having a difficult time figuring out why my mobile menu disappears after you begin scrolling. Any ideas on how to fix it. Thank you so much in advance. I have searched everywhere.

http://02ebe12.netsolhost.com/

Upvotes: 0

Views: 684

Answers (1)

Vel
Vel

Reputation: 9277

Add this css in your active theme style.css file

@media(max-width:767px){
.top-wrap .header-wrap {
    position: fixed;
    width: 100%;
    z-index: 99999;
}
}

Upvotes: 1

Related Questions