Different logo on mobile device
-
Hi! We are trying to show a different logo for the mobile version of the website. We have tried the following code in our CSS without success:
@media only screen and (max-device-width : 640px) { /* style here apply for screen width up to 600px */ .site-title { background-image: url('/img/logo.png'); } } @media only screen and (min-device-width : 640px) { /* style here apply for screen width above 600px*/ .site-title { background-image: url('/img/logo-big.png'); } }
This is found in our header.php if it helps:
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><img src="<?php echo get_template_directory_uri() . '/img/logo.png';?>" /></a></p>
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Different logo on mobile device’ is closed to new replies.