Skip to content

Instantly share code, notes, and snippets.

@bluedognz
Last active July 14, 2017 14:30
Show Gist options
  • Save bluedognz/8d0511fc139aa044e15edf246289262c to your computer and use it in GitHub Desktop.
Save bluedognz/8d0511fc139aa044e15edf246289262c to your computer and use it in GitHub Desktop.
CSS to apply a subtle drop shadow to the Beaver Themer fixed header
/** ADD A DROP SHADOW TO BEAVER THEMER HEADER SHRINK ROW **/
.fl-theme-builder-header-scrolled {
-webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment