RoadRash wrote:I can see the same as you on my iPhone 4: the dimmed background is placed top left.
I actually can’t tell you why this happens – we need to study this closer. I suspect it might have something to do with the 1:1 render of the page set in this part of the mobile.js:
- Code: Select all
// Add a meta tag to have the iPhone render the page 1:1
hs.createElement('meta', {
name: 'viewport',
content: 'width=device-width; initial-scale=1.0; maximum-scale=1.0;'
Maybe you should turn off the dimming for mobile devices. Add this to mobile.js right after the hs.allowHeightReduction line:
- Code: Select all
hs.dimmingOpacity = 0;
If I turn the dimming off I cannot see the caption anymore... it's white and not very visibile on the yellow background of the page.
Do you have a workaround for that? Maybe putting the caption inside the image?
Thanks
Rick