Skip to content

Instantly share code, notes, and snippets.

@robhob
Last active January 9, 2018 11:27
Show Gist options
  • Save robhob/2deab260187e0a9226c9b671ea2e21d0 to your computer and use it in GitHub Desktop.
Save robhob/2deab260187e0a9226c9b671ea2e21d0 to your computer and use it in GitHub Desktop.
/* Switch Divi Logo on Mobile Devices */
@media only screen and (max-width: 981px) {
#logo {
content: url(“http://mydomainname.com/wp-content/.../MyMobileLogo.png”);
max-height: 160px;
height: auto; /* default value - the browser calculates the height */
}
}
/* Restrict the width of the logo if necessary */
@media (max-width: 981px){
.et_header_style_left #logo{
max-width: 75%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment