michael liu
michael liu

Reputation: 55

Jquery Dialog Font Size

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

Answers (2)

Swarne27
Swarne27

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

zxqx
zxqx

Reputation: 5205

Use CSS's font-size property:

button {
  font-size: 28px;
}

Upvotes: 1

Related Questions