Thit Lwin Oo
Thit Lwin Oo

Reputation: 3438

jQuery Dialog Close Button position change

I am using jQuery UI 1.10.x. I would like to move Close button to the right. How can I achieve it?

Upvotes: 1

Views: 2420

Answers (1)

breadmj
breadmj

Reputation: 195

There is no built-in option for moving buttons.

You can achieve it by using your own style sheets (css).


See below css.

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: right;
}

Upvotes: 1

Related Questions