| Author |
Themes for my application
|
naveen joyce
Greenhorn
Joined: Apr 15, 2011
Posts: 6
|
|
Hi all,
I am developing an application in jsp for my client.My requirement is to apply 3 to 4 themes to my entire application.I need to include those themes in a select option so that whenever user selects any one of them that theme has to be applied.Can any one help me with the code in jsp???
Thanks
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56233
|
|
|
Use the value of the dropdown to include a different set of css files to apply the different themes.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26218
|
|
The major steps I can think of are:
1) Create a CSS file using the same id/class names for each theme.
2) Make sure your JSPs don't have any hard coded formatting info and only use the common id/class names in the theme css files
3) Build a way to let the user change themes.
4) Store the currently selected theme somewhere (maybe in the HttpSession - unless you need to remember it between visits in which case you need to store it in a cookie or the database)
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
 |
|
|
subject: Themes for my application
|
|
|