Quote:
Originally Posted by DaffyDuck
Also, a small suggestion - including an image resize script into the style would be awesome, as that is pretty much all it is missing to deal with posts with images that invariably end up being too large.
|
As a suggestion, just include this code:
Code:
@media screen and (max-device-width: 480px){
img{
max-width:100%;
height:auto;
}
}
It will automatically resize images for iPhones.
Also, adding this will automatically hide the toolbar on iPhones:
Code:
window.addEventListener('load', function() {
setTimeout(scrollTo, 0, 0, 1);
}, false);
(or, can you give me a pointer where to add these myself?)