Seems that when viewing in Droid 2.2 the background image shows that it is loading, though the loading never completes. Is this process due to the small "limited broadband" device being used? Thanks!
Seems that when viewing in Droid 2.2 the background image shows that it is loading, though the loading never completes. Is this process due to the small "limited broadband" device being used? Thanks!
I haven't encountered this, but it could well be due to bandwidth limitations. A possible work-around would be by preventing the background image from being displayed at all on small devices. You could accomplish this with a bit of custom CSS (in the "Custom Stylesheet" box) of the Image Set:
@media (max-width: 767px) {
.myatu_bgm_fs { display: none !important; }
.myatu_bgm_info_blk { display: none !important; }
}
Unless the image is cached, most browsers (Chrome, Opera Mini) will not download the image in this case. You can adjust the max-width to other sizes if you wish, ie., mobile phones something like 480px or less.
This topic has been closed to new replies.