[Solved] Why isnt the backgrounds showing on iphone/ipad? [closed]


You are using a CSS background on the img tag, I’m not sure if this is supported on iOS.

One solution that I am pretty sure will work is using the following CSS applied to the wrapping a tags instead:

div.pure-g-r a{
 display: block;
 width: 100%;
 height: 100%;
}

div.gano-box a{
 background: -default image here-;
}
div.gano-box a:hover{
 background: -hover image here-;
}
/*... for all your other boxes*/

Another suggestion: rather use an HTML colour code for your coloured backgrounds. This will improve loading speed and performance.

Hope this helps!

4

solved Why isnt the backgrounds showing on iphone/ipad? [closed]