Skip to content

Instantly share code, notes, and snippets.

@brianleejackson
Last active October 16, 2020 14:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brianleejackson/e3ecc083fabfcb90d79e995b42922d32 to your computer and use it in GitHub Desktop.
Save brianleejackson/e3ecc083fabfcb90d79e995b42922d32 to your computer and use it in GitHub Desktop.
Scroll sticky sidebar WordPress widget with no jQuery
@media (min-width: 769px) {
.site-content {
display: flex;
}
.inside-right-sidebar {
height: 100%;
}
.inside-right-sidebar aside:last-child {
position: -webkit-sticky;
position: sticky;
top: 50px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment