Reputation: 43
I'm making a mobile website with jQuery Mobile. In the page I use a navbar with three buttons. These buttons have a text value of which I would like to change the font size. But I am unsure how to do this, please advise.
Upvotes: 2
Views: 3048
Reputation: 9273
Include your own style sheet after the jQuery Mobile style sheet.
Use .ui-navbar .ui-btn-text { font-size: your font-size here; }
Upvotes: 4