Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nextab/233ef04f538e3efbcfc1de532a69650b to your computer and use it in GitHub Desktop.

Select an option

Save nextab/233ef04f538e3efbcfc1de532a69650b to your computer and use it in GitHub Desktop.
/* Fix the "jumping" effect on mobile devices for Divi's Fullscreen Header Module */
/* #region max-width 479px */
@media only screen and (max-width: 479px) {
/* #region Fixing jumping header on mobile devices */
.et_pb_fullwidth_header.et_pb_fullscreen {
min-height: 100vh !important;
padding-top: 0 !important;
.et_pb_fullwidth_header_container {
min-height: calc(100vh - 70px) !important;
// width: 100%;
}
}
/* #endregion */
}
/* #endregion */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment