Skip to content

Instantly share code, notes, and snippets.

@alxpck
Last active June 9, 2017 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alxpck/353e047630acc2bad3a6bf158fb65e88 to your computer and use it in GitHub Desktop.
Save alxpck/353e047630acc2bad3a6bf158fb65e88 to your computer and use it in GitHub Desktop.
/* FIND .page.logged-out and change from 50px to 0px */
.page.logged-out { padding-top: 0px; }
/* FIND .logged-out .navbar-static-top {margin-top: 0px !important;} and remove the "!important" */
.logged-out .navbar-static-top { margin-top: 0px; }
/* ADD below to bottom of main css file */
.logged-out .navbar-static-top { margin-top: 50px; }
@media (max-width: 600px) {
.logged-out .navbar-static-top { margin-top: -20px; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment