Home › Forums › Azuma › Hide top bar widget when scrolling down › Reply To: Hide top bar widget when scrolling down
September 22, 2020 at 11:04 am
#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;
}