For the past day I have been trying to figure out how to change the min-height styling on a jQuery mobile page when viewing in mobile safari. I have tried, inline styles, overriding ui-page styles and have yet to find a way to override the height of data-role="page". Ideally if the page "content" is less than the "page" height I would like the "page" height to automatically adjust to the "content". I have attached an illustration to better explain the issue.

jQuery Webpage Diagram

<div data-role="page">
     <div data-role="header">
             Header Elements
     </div>
     <div data-role="content" class="homeNav">
            <ul data-role="listview" data-inset="false" data-filter="false">
                <li><a href="expertise.html">Expertise</a></li>
                <li><a href="greatesthits.html">Greatest Hits</a></li>
                <li><a href="profile.html">Profile</a></li>
                <li><a href="mindset.html">Mindset</a></li>
                <li><a href="connect.html">Connect</a></li>
             </ul>  
     </div><!-- /content -->

     <div data-role="footer" data-position="fixed">
             Footer elements
     </div><!-- /footer -->
</div><!-- /page -->
link|improve this question

43% accept rate
feedback

1 Answer

The min-height of the data-role="page" element is set via JavaScript in a resize event handler for the window object. You can create your own JavaScript that resizes the page differently:

$(function () {
    $(window).bind('resize', function (event) {
        var content_height = $.mobile.activePage.children('[data-role="content"]').height(),
            header_height  = $.mobile.activePage.children('[data-role="header"]').height(),
            footer_height  = $.mobile.activePage.children('[data-role="footer"]').height(),
            window_height  = $(this).height();

        if (content_height < (window_height - header_height - footer_height)) {
            $.mobile.activePage.css('min-height', (content_height + header_height + footer_height));
            setTimeout(function () {
                $.mobile.activePage.children('[data-role="footer"]').css('top', 0);
            }, 500);
        }
        event.stopImmediatePropagation();
    }).trigger('resize');
});

Here is a demo: http://jsfiddle.net/sAs5z/1/

Notice the setTimeout used to set the fixed-position-footer; the timeout duration can probably be made smaller. This is used because the jQuery Mobile Framework was re-positioning the fixed-position-footer back to the bottom of the page. An example of this can be seen here: http://jsfiddle.net/sAs5z/

Another note, you may want to only re-position the fixed-position-footer element and leave the page's min-height property the same; this will make the page gradient cover the whole screen but the footer won't have any space between it and the content. Here is a demo of this method: http://jsfiddle.net/sAs5z/2/

link|improve this answer
I don't see a link anywhere. – Jasper Jan 24 at 19:49
Please checkout the link below on a mobile device to see the problem that I am having with the device height. go2mktg.com/weblast/go25037/mobile/expertise.html#planning I have tried implementing the code above but am still getting extra space below my content unless adding a minimum height on my content div which forces scrolling. Any help would be greatly appreciated! I cannot find a way to override the styling on the page background. I want to make it black but it seems to always default to light grey. – negrelja Jan 24 at 19:56
If all you want to do is make the page black, adjust the CSS for the data-role="page" elements: .ui-page { background : #000; }. If it isn't sticking it's because it's being overwritten and you can add !important like this: .ui-page { background : #000 !important; }. – Jasper Jan 24 at 20:01
I tried adding the background style with !important still with no luck, see here: go2mktg.com/weblast/go25037/mobile/css/m_style.css Ideally I would like to eliminate scrolling if the content is shorter than the device height and fill the extra space with black. – negrelja Jan 24 at 20:22
You didn't add background : #000, you added background-color : #000 which will not overwrite the gradient that you want to get rid of. I believe that gradients are considered to be images so you need to use: background : #000 – Jasper Jan 24 at 20:43
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.