Can mysite automatically match the site main theme?
looklively - January 27, 2009 - 14:55
Hullo!
I would like to have my website users select their own global theme for viewing the site.
I intend to develop a number of themes using salamander as the base theme.
Can I set it up so that the mysite content uses the same global theme automatically?
Thanks.

To answer my own post
In case it helps anyone ...
I allowed the user to choose between multiple site themes using the switchtheme module.
In order to match mysite pages to each site theme;
Delete all .css files except default.css in /mysite/plugins/styles
Adjust mysite.css as required.
In my case I simply removed the background images from span.mysite-header.
Adjust style.css in each theme as required.
In my case, I changed header and footer colours using;
span.mysite-header {
background-color: #xxx;
}
div.mysite-footer {
background-color: #xxx;
}
I hope this helps.