Re: [WSG] Global and page-specific style sheets

2007-03-13 Thread Jean-Jacques Halans
Have a look at the Adobe.com website, see what they are doing (talking about massive). I also tend to divide layout/fonts/colours into separate files. You could then have different colour templates, font templates (where font sizes change for example), etc. As css files can become big, I think w

Re: [WSG] Global and page-specific style sheets

2007-03-13 Thread John Faulds
Basically if I'm looking to change something in the main nav, I look in mainnav.css, if I'm altering a header for a table in our content area, I look in contentTables.css etc, etc. Or if you've got Firebug, right-click on an element, 'Inspect element' and it tells you exactly what line of

RE: [WSG] Global and page-specific style sheets

2007-03-13 Thread Paul Bennett
Hi Chris, Basically if I'm looking to change something in the main nav, I look in mainnav.css, if I'm altering a header for a table in our content area, I look in contentTables.css etc, etc. The main file was 30K (!) before we started trimming it down and breaking up. Yes it's more http conn

RE: [WSG] Global and page-specific style sheets

2007-03-13 Thread Cole Kuryakin
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: wsg@webstandardsgroup.org Subject: RE: [WSG] Global and page-specific style sheets One of the best things we di

Re: [WSG] Global and page-specific style sheets

2007-03-13 Thread Chris Williams
to this I'm not seeing. Care to enlighten? > From: Paul Bennett <[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 log

RE: [WSG] Global and page-specific style sheets

2007-03-13 Thread Paul Bennett
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-for

Re: [WSG] Global and page-specific style sheets

2007-03-13 Thread Kevin Futter
On 13/3/07 3:01 PM, "Cole Kuryakin" <[EMAIL PROTECTED]> wrote: > Hello All ­ > > I¹ve got a site that has a fairly MASSIVE style sheet. It¹s quite long as the > design spec dictates a number of different pages be layed-out differently. > > Accordingly, its becoming quite tedious to find certai

RE: [WSG] Global and page-specific style sheets

2007-03-12 Thread Samuel Richardson
ndardsgroup.org Subject: [WSG] Global and page-specific style sheets Hello All - I've got a site that has a fairly MASSIVE style sheet. It's quite long as the design spec dictates a number of different pages be layed-out differently. Accordingly, its becoming quite tedious to

[WSG] Global and page-specific style sheets

2007-03-12 Thread Cole Kuryakin
Hello All - I've got a site that has a fairly MASSIVE style sheet. It's quite long as the design spec dictates a number of different pages be layed-out differently. Accordingly, its becoming quite tedious to find certain style blocks that need to be altered/tweaked as development continues.