How do I create a jQueryMobile theme?

Is it overriding the CSS the best way?

link|improve this question

79% accept rate
feedback

3 Answers

up vote 16 down vote accepted

The best mothod for creating a theme is actually modifying the existing one. Just like Jquery Mobile have done with their "Valenica" Theme. Use the standard css as a starting point / reference

http://code.jquery.com/mobile/latest/jquery.mobile.css

Often the best way to work out which elements need the styling tweaks is to inspect them via Firebug


Its also worth noting, its not a great idea to try and create a theme from scratch, as a large part of what makes jquery mobile so great is the cross browser testing and developments they have already made to the css.


Update:

In the near future there will be a jquery mobile theme roller, you can track its development at github.

https://github.com/jquery/jquery-mobile/wiki/Mobile-ThemeRoller


Update 2

The theme roller is ready!

http://jquerymobile.com/themeroller/

link|improve this answer
+1 I was also looking for this info. But can i copy default and make my theme ans use as a "j" – Jitendra Vyas Jul 6 '11 at 7:23
use as a "j"? Explain please – Blowsie Jul 6 '11 at 7:27
Like in jquery mobile we use different type of themes using HTML 5 data attributes. jQuery Mobile's default Theme includes 5 swatches that are given letters (a, b, c, d, e) for quick reference. – Jitendra Vyas Jul 6 '11 at 7:38
Simple, copy any of the existing styles and change the letter in the classes. ie . J Styles - .ui-btn-up-j {} – Blowsie Jul 6 '11 at 11:09
feedback

Just discovered a neat tool for creating prototypes which includes its own theme-maker/roller. Worth checking out! More for the themes than the prototyping. At least until the official themeroller comes out. http://www.mobjectify.com

Allows you to easily add extra JqueryMobile themes and see it live.

link|improve this answer
wow! very nice concept. +1 – Blowsie Aug 10 '11 at 14:21
feedback

I haven't had a chance to test the results of this theme roller; but I thought it might be useful, at least until the official themeroller is available.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.