Re: [WSG] style sheet set up

2005-05-28 Thread Neil Patel
http://www.scriptygoddess.com/archives/2003/03/28/compressing-webpages-for-fun-and-profit/ On 5/28/05, Kim Kruse <[EMAIL PROTECTED]> wrote: > Hi Kornel, > > > Stylesheets compress wonderfully. Enable gzip transfer encoding for > > them (but if you do it in PHP or alike, you'll have to send cache

Re: [WSG] style sheet set up

2005-05-28 Thread Neil Patel
I tend to divide my style sheets into smaller files. For example, I usually put only basic layout in one file, i.e. layout.css, the general text formatting styles in another, and then the colors for the entire site in a colors.css file. On 5/28/05, Bruce Gilbert <[EMAIL PROTECTED]> wrote: > is the

Re: [WSG] I'll Have Fries(Chips)With My CMS

2005-01-23 Thread Neil Patel
Well, you can make any of these CMS's standards compliant: Typo - Complicated but powerful eZ Publish - I recommend this but the templating system takes time to get used to Textparttern - Less powerful that some but easier integration xMambo - Aims for standards compliance I would also check out

Re: [WSG] Floating to left and/or right...

2005-01-23 Thread Neil Patel
I would agree with Gunlaug in that either number 3 or using negative margins is the way to go with your code arrangement. On Mon, 24 Jan 2005 02:50:15 +0100, Gunlaug Sørtun <[EMAIL PROTECTED]> wrote: > Alex Katechis wrote: > > Hi all, this is my first shot at a tableless XHTML/CSS design and its

Re: [WSG] Floating to left and/or right...

2005-01-23 Thread Neil Patel
If you put your sidebar div above your content div the current css works out fine. Otherwise if you want to leave the same order as you have it in know you need to set a specific width for the content div to make the float: left float: right technique to work. I tested it in FF1.0. Hope this helps.