1

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?

2 Answers 2

2

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"}); 
Sign up to request clarification or add additional context in comments.

Comments

1

Use CSS's font-size property:

button {
  font-size: 28px;
}

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.