juggledad |
Nov 12, 2013 04:39 AM |
Site not showing on an iPod Touch
If your site does not show when viewing it on an iPod Touch, go to mto->CSS Files->content.css and find the 'body' css which will be
HTML Code:
body {
margin: 0;
padding: 0;
font-family: "Segoe UI", "Lucida Grande", "Helvetica Neue", sans-serif;
font-size: 15px;
opacity: 0; /* <--- will be turned on ( = set to '1' ) with jQuery
after google fonts, if any, have loaded and masonry layout,
if any, was applied */
}
and change the 'opacity' to '1'
HTML Code:
opacity: 1; /* <--- will be turned on ( = set to '1' ) with jQuery
after google fonts, if any, have loaded and masonry layout,
if any, was applied */
This seems to be a bug in the Safari browser on the iPod - the iPhone seems to work fine.
|