Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is the code i am using:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta name="viewport" content="width=device-width; initial-scale=1.0" />
        <link rel="stylesheet"  href="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.css" /> 
        <script src="http://code.jquery.com/jquery-1.6.1.min.js"></script> 
        <script src="http://code.jquery.com/mobile/1.0b1/jquery.mobile-1.0b1.min.js"></script>
    </head>
    <body>
    <div data-role="page" id="home">
            <div data-role="header" data-theme="b">
                <h1>Home</h1>
            </div>
            <div data-role="content" data-theme="b">
            </div>
             <div data-role="footer" data-position="fixed" data-id="pFooter">
                <div data-role="navbar">
                    <ul>
                        <li><a href="#" data-icon="custom" class="ui-btn-active" >Home</a></li>
                        <li><a href="#first" data-icon="grid">Page1</a></li>
                        <li><a href="#" data-icon="star">Page2</a></li>
                        <li><a href="#" data-icon="arrow-r" data-iconpos="notext"></a></li>
                    </ul>
                </div>
        </div>  
    </div>
    </body>
</html>

You can see it in action here- http://jsfiddle.net/PJWQr/

The problem I am facing is that in the last button where I am using data-iconpos="notext",the height of the interactive area is lesser than other buttons in the navbar.

Kindly let me know how to fix this.

share|improve this question

3 Answers

up vote 7 down vote accepted

You actually don't need the iconpos="notext" as it is not technically a button.

Remove that attribute and add a space character to the content of the a element:

<li><a href="#" data-icon="arrow-r">&nbsp;</a></li>
share|improve this answer

Probably the easy (kind of quick and dirty, but I'm heading to bed so this is what you get ;) is to just but a character there: http://jsfiddle.net/PJWQr/2/

share|improve this answer

You can do this to remove the disc... for anyone looking for this in the future. Add this to your button element:

data-iconshadow="false"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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