My website needs a theme but I can't decide on just one. Instead, I want to give the user the option to choose a theme from a dropdown menu. When an option is clicked, it will change the background image, color, and positioning of the site.
For example, selecting the "Mario Bros 3" theme would result in:
background-image:url('smb3.jpg');
background-repeat:repeat-x;
background-position:left bottom;
background-attachment: fixed;
background-color: #6899f8;
And choosing the "Zelda LTTP" theme would have these settings:
background-image:url('zeldalttp.jpg');
background-repeat:no-repeat;
background-position:left bottom;
background-attachment: fixed;
background-color: Black;
I envision this feature as a dropdown menu that saves the user's choice so that it applies every time they visit the site.
I'm not sure how to implement this, so any help would be greatly appreciated!