Private: Home › Forums › WordPress Themes › Elvyre – Retina Ready WordPress Theme › stacking background image in mobile view › Reply To: stacking background image in mobile view
October 29, 2014 at 10:20 am
#916
Keymaster
Ernest,
CSS I gave you will force image to stretch only on mobile phones. CSS below will stretch it on Tables too, so it should look fine now on all devices and desktop.
@media only screen and (max-width: 767px) and (min-width: 480px){
#page-title{
background-size: cover;
}
}