TwoBeers / fastfood

Fastfood WordPress theme
http://www.twobeers.net/annunci/tema-per-wordpress-fastfood
7 stars 0 forks source link

Header image mobile view #28

Open sensato50 opened 9 years ago

sensato50 commented 9 years ago

Our header image (at http://transitionbrockville.com) isn't scaling down for the mobile view (Android tested), and there doesn't seem to be an option for a smaller image on the admin pages as mentioned here:

https://wordpress.org/support/topic/logo-position-and-size

jimo commented 8 years ago

try to add to "custom Css" option field:

div#header {
    min-height: 0;
    height: auto;
}
div#header img {
    width: 100%;
    height: auto;
}

hope this works (sorry for the super-late reply, we are really busy)

sensato50 commented 8 years ago

Works like a charm! Many thanks.

On 2015-11-13 6:54 AM, jimo wrote:

try to add to "custom Css" option field:

|div#header { min-height: 0; height: auto; } div#header img { width: 100%; height: auto; } |

hope this work (sorry for the super-late reply, we are really busy)

— Reply to this email directly or view it on GitHub https://github.com/TwoBeers/fastfood/issues/28#issuecomment-156410615.