Jonas Ryberg
Jonas Ryberg

Reputation: 43

How do I change the font size of the button text in my navbar?

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

Answers (1)

danwellman
danwellman

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

Related Questions