Last active
January 9, 2018 11:27
-
-
Save robhob/2deab260187e0a9226c9b671ea2e21d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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