Home Forums Azuma Hide top bar widget when scrolling down Reply To: Hide top bar widget when scrolling down

#12189
Andy
Keymaster

Add either of these snippets of CSS to Customize > Additional CSS

#masthead.scrolled #top-bar {
    display: none;
}

or this may be smoother effect

#masthead.scrolled #top-bar {
    visibility: hidden;
    height: 0;
}