[css-d] conditional statements question.

2007-03-31 Thread Karl Bedingfield
Hi all, I have a style sheet that works for IE5.01 5.5. How do I put up one link to cover both of these browsers or do I need to add 2 statements? By the way, I take it that using conditional statements means I have to use a full css file for each browser unlike hacks where I only need to add

Re: [css-d] conditional statements question.

2007-03-31 Thread Lori Lay
Karl Bedingfield wrote: Hi all, I have a style sheet that works for IE5.01 5.5. How do I put up one link to cover both of these browsers or do I need to add 2 statements? By the way, I take it that using conditional statements means I have to use a full css file for each browser unlike

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 layout

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/footer

Re: [css-d] broken son of sucker fish menu

2007-03-31 Thread Ingo Chao
When you want to start a new thread, do not simply answer to an existing message. Send a new message to the list. Don - HtmlFixIt.com wrote: Ok so I managed to break it ... seems to work in ff just fine, but has a sticky problem in ie7. If you hover slowly right over the left/right

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: *

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

2007-03-31 Thread Gate Wizard
It would help to use correct HTML A snip of your menu: h1 li=Let's Figure It Out/h1 lia href=http://www.ispotfilm.com/;option 1/a/li lia href=http://www.ispotfilm.com/;option 2/a/li You need to wrap the LI's within either a UL or OL example: ul liblah/li liblah/li /ul It really helps to

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 repeating

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 redesign at

[css-d] How To Position Banner Amidst Floated Layout

2007-03-31 Thread Elli Vizcaino
Hello All, I have a floated layout that requires a banner to sit at the lower part of the content area. I originally started coding this layout entirely with absolute positioning till I ran into problems with the footer, especially when the layout changes across a few of the pages, so I switched

Re: [css-d] How To Position Banner Amidst Floated Layout

2007-03-31 Thread Gunlaug Sørtun
Elli Vizcaino wrote: Now I'm not sure how to position the banner, since absolute or relative positioning isn't doing what I need it to do. Actual page: http://eliazer.com/gse/index.html Create the necessary relation by adding... #content {position: relative;} ...and the absolute positioned

Re: [css-d] How To Position Banner Amidst Floated Layout

2007-03-31 Thread Elli Vizcaino
Great that worked! Thanks Georg! However, I was just wondering if this syntax is correct: #content {position: relative; float: left; width: 954px; border-top: 1px solid #162581;} I originally just had #content floating, I added position relative and it got the banner in

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

2007-03-31 Thread francky
Gate Wizard wrote: There is now means to embed a flash movie via CSS that I am aware of. Hi Mike, Indeed, but css can be used to style an embedded flash file, like css can style almost everything. example test page

Re: [css-d] How To Position Banner Amidst Floated Layout

2007-03-31 Thread Gunlaug Sørtun
Elli Vizcaino wrote: I was just wondering if this syntax is correct: #content {position: relative; float: left; width: 954px; border-top: 1px solid #162581;} That's a perfectly fine way to solve the problem at hand. You're simply doing several, separate, things with/on