[css-d] Foxability - WCAG1.0 - CSS font size

2008-03-19 Thread Gate Wizard
I was wondering how many have heard of this Firefox extension, who uses it, and their opinion of it. http://foxability.sourceforge.net/ I have a question concerning PX with Fonts and WCAG 1.0 Should fonts declared with a size in Pixels fail a WCAG 1.0 test? I find a lot of references that font

[css-d] at import loading

2007-08-13 Thread Gate Wizard
question How does a browser handle @import? Example: in HEAD we have: - main.css /* */ Does the browser load the imported CSS before it starts rendering the page, or after? I've looked here, but it doesn't seem to answer my question: http://www.w3.org/TR

Re: [css-d] Born again CSS

2007-06-03 Thread Gate Wizard
On 5/31/07, Luc <[EMAIL PROTECTED]> wrote: > > Good morning list, > > After over 1 year of not messing with CSS i'm picking up CSS-design > again and i'm stunned of how much i already forgot. I'm doing a > mockup at the moment involving floats and they go crazy on me. > > On resizing the viewport t

Re: [css-d] Problems IE6 pc

2007-06-03 Thread Gate Wizard
On 5/30/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Hi, > > Having problems in IE6 pc, the second form from left will not slide in to > place. > > I know the styling is not finished and it has failed the html validation. > (which I'm not sure that some of the things I can do a lot about

Re: [css-d] Fixex/fluid column issues

2007-04-03 Thread Gate Wizard
Hello Daniel, On 4/3/07, Daniel Hammond <[EMAIL PROTECTED]> wrote: > > I have a page where the left column is the navigation with a fixed width > in > pixels, and the content to the right of it is fluid in its width. I tried > following these guidelines: > http://blog.html.it/layoutgala/LayoutGala

Re: [css-d] How to embed Flash movies?

2007-03-31 Thread Gate Wizard
There is now means to embed a flash movie via CSS that I am aware of. Sorry, but this topic is not what this CSS-Discussion list is about. peace, -G7W On 3/26/07, Richard Grevers <[EMAIL PROTECTED]> wrote: > > On 3/24/07, Michael Stevens <[EMAIL PROTECTED]> wrote: > > I'm working on a site redes

Re: [css-d] IE Transparent PNG Background (that repeats)

2007-03-31 Thread Gate Wizard
http://dean.edwards.name/IE7/ On 3/27/07, BJ Clark <[EMAIL PROTECTED]> wrote: > > Hello List, > Anyone out there know of a fix for IE that allows repeating (repeat-x > or repeat-y) transparent PNG background images? > > I have attempted to use the bgsleight hack, but that doesn't seem to > allow r

Re: [css-d] Columns with 's : IE vs FF issue...

2007-03-31 Thread Gate Wizard
It would help to use correct HTML A snip of your menu: Let's Figure It Out http://www.ispotfilm.com/";>option 1 http://www.ispotfilm.com/";>option 2 You need to wrap the LI's within either a UL or OL example: blah blah It really helps to have your HTML correct before attempting to twea

Re: [css-d] screen area detection/alt style sheets

2007-03-31 Thread Gate Wizard
This is a CSS-Discussion group, javascript it is not. A CSS method would be to use: .container { min-width: 780px; /* be nice to 800x600 */ max-width: 1250px; /* not stretch too much on hi-res */ } and for IE6, since it doesn't understand min/max-widths... inside your ie.css style sheet: * html

Re: [css-d] CSS frames with dynamic size

2007-03-31 Thread Gate Wizard
give your sidebar a fixed width with overflow:auto On 3/28/07, kan <[EMAIL PROTECTED]> wrote: > > I found many examples with "frames emulation" via css. But all > examples (which I have seen) have fixed size footer/header/sidebars. > Is it possible to do frame-like layout with dynamic header/foote

Re: [css-d] IE 6/7 layout issue

2007-03-31 Thread Gate Wizard
Things are "off" as well in FF2.x, not just IE. You have floats in a DIV that need cleared. Try this: http://www.webtoolkit.info/css-clearfix.html div class="contentbox clearfix" On 3/30/07, Dave Goodchild <[EMAIL PROTECTED]> wrote: > > URL: http://dontjustsitthere.co.uk/stage/ > > There is a la

[css-d] CSS - Single or Multiple - Advise requested

2006-12-22 Thread Gate Wizard
Currently our project uses 1 "main.css" which is getting to be quite large. Project: http://forums.ikonforums.com/ I have thought about splitting it into "sections" example: /* main.css */ /* */ /* End main.css */ My question is this: would splitting the css into smaller, more manageable fil