Re: [css-d] Need help with this [EMAIL PROTECTED] AP div problem I think

2006-02-24 Thread Ingo Chao
Kim Kruse wrote: If you go to this page http://www.mouseriders.dk/til_michael/index_white.php (I'm not done with the stylesheet for this page yet) and in the selectbox please choose Hvid/blå kontrast and click the submit (skift). You should now see a white page with the A a in the blue

[css-d] Opera 8.5 and MacIE positioning problem

2006-02-24 Thread ImageSpinner
Howdy, Just ran across a strange bug, at least it appears to be one... I have a left-nav div: #navigation { position: absolute; width: 145px; top: 77; left: 0; } that is within a body-container div: #bodycontainer { position: relative;

Re: [css-d] Opera 8.5 and MacIE positioning problem

2006-02-24 Thread Philippe Wittenbergh
On Feb 24, 2006, at 5:38 PM, ImageSpinner wrote: #navigation { position: absolute; width: 145px; top: 77; left: 0; } that 'top' is missing a unit: 77 what ? Cows, elephants ? with some various other divs mixed in, including a logo div: #logo {

Re: [css-d] Opera 8.5 and MacIE positioning problem

2006-02-24 Thread ImageSpinner
Thanks for the help! One down, one to go... On Feb 24, 2006, at 1:18 AM, Philippe Wittenbergh wrote: On Feb 24, 2006, at 5:38 PM, ImageSpinner wrote: #navigation { position: absolute; width: 145px; top: 77; left: 0; } that 'top' is missing a unit: 77 what ?

Re: [css-d] Opera 8.5 and MacIE positioning problem

2006-02-24 Thread Gunlaug Sørtun
ImageSpinner wrote: One down, one to go... Well, maybe your font-sizing strategy should also get some attention, before you put some real text in there. What font-size in 'px' does in IE/win should be well known, and is not much of an issue since it can be 'ignored'[1] by that browser.

Re: [css-d] Interesting Firefox bug? (first-letter pseudo selector)

2006-02-24 Thread david
Zoe M. Gillenwater wrote: If there are multiple characters before the first letter, all of them should go along for the ride. For instance: p'I can't believe it's not butter' is what Zoe said, said the man./p In this case, 'I would be the drop cap. Again, doesn't solve your problem,

Re: [css-d] Opera 8.5 and MacIE positioning problem

2006-02-24 Thread Philippe Wittenbergh
On Feb 24, 2006, at 6:26 PM, ImageSpinner wrote: with some various other divs mixed in, including a logo div: #logo { position: absolute; left: -2px; bottom: 45px; } Mac IE 5.2 (yeah, I know...) -- the navigation appears fine, but, the logo div either jumps to the top,

Re: [css-d] Opera 8.5 and MacIE positioning problem

2006-02-24 Thread Gunlaug Sørtun
Philippe wrote: Without a height declared, it is very hard to do (and in your case, you can't declare a height). You might want to try: * htmlbody #logo {top: 100%; bottom:auto} that serves it only to IE mac. In case you don't want to hack it into IE/Mac... Never mind the height of that

Re: [css-d] Header, Footer and 3 Columns

2006-02-24 Thread Zoe M. Gillenwater
death2all wrote: I have the following layout: http://www.d2all.org/css_test/1.html and I am trying to convert it to use only css for the layout and remove tables completelly. Up to now I have this: http://www.d2all.org/css_test/2.html but the footer gets mixed up with any of the left or

Re: [css-d] Color Scheme Assistance

2006-02-24 Thread Christy Collins
http://wellstyled.com/tools/colorscheme2/index-en.html http://www.colorschemer.com/online.html http://www.morecrayons.com/ http://www.meyerweb.com/eric/tools/color-blend/ And there's probably more -C On Feb 24, 2006, at 10:45 AM, David A. Ensor wrote: I've had no success in searching thru the

[css-d] update on horzontal menu failing for Safari

2006-02-24 Thread [EMAIL PROTECTED]
Using http://snugtech.com/en/safaritest the dropdown menu looks good now. If someone wants to doublesheck with Safari, much appreciated. The Eric Meyer menu works perfectly. The site: http://www.longmontleaders.com What happened - the following line in CSS was getting mussed by an invalid

Re: [css-d] Min-Height

2006-02-24 Thread Chris Ovenden
This area is slightly problematic, because min-height is not yet supported by IE7 (though we're promised it for the proper release). If we assume it will be included, the neatest solution that works in all browsers is: #element { min-height:100px } * html #element { height:100px } Some people

Re: [css-d] Gmail's CSS for expanding subject lines

2006-02-24 Thread Carl Youngblood
One caveat with this solution: it doesn't work in IE. On 2/23/06, Carl Youngblood [EMAIL PROTECTED] wrote: Success! I needed to use white-space: nowrap On 2/23/06, Carl Youngblood [EMAIL PROTECTED] wrote: Nice try, but that still seems to wrap. On 2/23/06, cj [EMAIL PROTECTED]

[css-d] ADMIN Re: Color Scheme Assistance

2006-02-24 Thread Zoe M. Gillenwater
David A. Ensor wrote: I've had no success in searching thru the archive for this... Maybe because it's not a CSS topic and thus not discussed on this list? :-) I'm pretty sure I've just recently run across a really useful site for getting color schemes. You enter one color and it offers

[css-d] Sequences of float clear divs

2006-02-24 Thread Michal Cizmazia
I want to have a text with floating divs (e.g. images) on both sides. A sequence of float clear divs is followed by text (that is a sequence of paragraphs). The example (and screenshots) http://cim.szm.sk/float-clear-seq.html illustrates the problem. (IE reneders it like I want, but FF an Opera

Re: [css-d] Making Blog Column Appear Floating Above Background With Shadow

2006-02-24 Thread MarcLuzietti
It looks like a simple background image. Without actually opening the CSS, I'd imagine it's a simple three column layout with a background set to repeat-x and left or right depending on the side. For example: columnLeft { background: url(/images/columnBackLeft.gif) top right repeat-x;