phidlerw...@gmail.com wrote:

> I think I've got a new site, professionalvideoprofiles.com , fairly 
> well in hand. But I checked it on my iPod Touch's Safari browser, and
> the footer (position:fixed and bottom:0) scrolls up with the page,
> and obscures the text beneath.

Mobile Safari doesn't support position: fixed, for obvious reasons - not
enough screen-area.

The fixed footer obscures content in regular browser-versions too in
small browser-windows, so you should add a reasonable large amount of
padding-bottom to the #wrap container.


In addition, you can fine tune layout for small screens by styling for
them through mediaquery - for example...

@media all and (max-width: 600px) {
/* additional styles for small screens here */
}

More info here:
<http://dev.opera.com/articles/view/how-to-serve-the-right-content-to-mobile/>
<http://dev.opera.com/articles/view/safe-media-queries/>

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to