Kamil Sindi
Kamil Sindi

Reputation: 22842

Easy Way to Change jQuery UI Theme?

Is there an easy way to change the theme of the jQuery UI by replacing certain files? It seems like I have to keep downloading the entire jQuery UI every time I want to change the theme.

Upvotes: 5

Views: 18272

Answers (3)

asdf_enel_hak
asdf_enel_hak

Reputation: 7650

You can build your own theme at http://jqueryui.com/themeroller/.
once you build your theme you will have link both in address bar that you can bookmark and in your css file jquery-ui-1.8.6.custom.css that you download:

http://jqueryui.com/themeroller/#ffDefault=Trebuchet+MS,+Tahoma,+Verdana,+Arial,+sans-ser...

for each modification you can use these link instead of start from beginning.

EDIT

by using totalcommander compare tool or winmerge, you just do syncronize existing jquery ui files and the new jquery ui files, if you build new one

Upvotes: 8

dmnc
dmnc

Reputation: 966

Referring to this answer, you can find ThemeRoller edit link in your css file. This url contains whole theme settings and this is the best way how migrate/upgrade it.

Upvotes: 2

Derek
Derek

Reputation: 4931

The only thing you need to change is the stylesheet and the images.

Upvotes: 3

Related Questions