
Originally Posted by
jettrue
Here's a quick tutorial on commenting out items in the stylesheet:
In a stylesheet, sections like this will be hidden:
/* this stuff will be hidden */
Removing the /* and */ from a "hidden" section, will make it un-hidden.
So in the stylesheet, the green section comes un-commented:
/*green */
green styles are found here, and are not hidden
/* eof green */
And the blue (and red and gray) come commented:
/* blue
blue styles are found here, and ARE hidden
/*eof blue*/
To un-comment the blue, all you have to do is change
/* blue
to
/* blue */
Hope that helps!