- This topic has 1 reply, 2 voices, and was last updated 5 years ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The topic ‘Hide top bar widget when scrolling down’ is closed to new replies.
Hi, how can i hide the Top Bar widget when we srcoll down the page?
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;
}