Thank you all for your posts/replies to my question... Looks like separate style sheets are the way to go (atleast for me).
I like the example Paul is pointing to below; I'm gonna try that first to see if it fits my needs (I didn't know that you could import a style sheet INTO another stylesheet!) That's great. Cole -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Bennett Sent: Wednesday, March 14, 2007 7:07 AM To: [email protected] Subject: RE: [WSG] Global and page-specific style sheets One of the best things we did was to follow Doug Bowmans (webstock '06) suggestion to break up stylesheets into logical components and include them in one main file. Our 'styles.css' file now looks like this: ------------------------- @import url(styles-contentTables.css); @import url(styles-forms.css); @import url(styles-mainnav.css); @import url(styles-popups.css); @import url(styles-secondarynav.css); @import url(styles-textformatting.css); /* generic rules go here */ ----------------------- It may take a while, but I promise you you'll thank yourself later on :) It was great advice and we've never regretted it. Paul ******************************************************************* List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: [EMAIL PROTECTED] ******************************************************************* ******************************************************************* List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: [EMAIL PROTECTED] *******************************************************************
