I have several themes on my website, and users can simply switch between several themes by clicking on the javascript link. I have 5 CSS files to handle the layout of all themes. 1 for structure, 3 for flowers, etc. For different topics and 1 common to some other things.
my css file names are read like this .. main.css, red.css, green.css, black.css, others.css With red, green and black css files are defined as alternate stylesheets.
I installed YSLOW! and get"This page has 5 external stylesheets. Try combining them into one."
I'm just wondering if most of them can be combined into fewer CSS files. I know that we can define `
@media screen
{
//screen
}
@media print
{
//print
}
`
CSS. - CSS?
.