Reputation: 55
How do I change the font size of the Jquery UI dialog button before it opens and for a generic button? Which attribute is it?
Upvotes: 1
Views: 3940
Reputation: 5747
You may try it with css,
#dialogBox .ui-button-text {
font-size: 10px; /* change font size */
padding: 1px 1px 1px 1px; /* change padding */
}
or else with Jquery,
$(".ui-button-text").css({"font-size": +10+"px"});
Upvotes: 2