Re: [css-d] IE-Push down?

2007-01-29 Thread Gunlaug Sørtun
Jon Hughes wrote: http://goonsquad.org/jon/ If you view this page in IE, the text below design blog is being pushed down past the #nav How can I fix that? It seems to be it's either clearing the div, or it's too wide, thus pushing itself down. You're right. 1: You are using a

Re: [css-d] IE-Push down?

2007-01-29 Thread Jon Hughes
-Original Message- From: Gunlaug Sørtun [mailto:[EMAIL PROTECTED] ... This means the h4January 28, 2007/h4 can't flow higher than the top edge of #menu. So, you should take #menu out of #content. ... That fixed it :) Thanks so much, - Jon

Re: [css-d] [SOLVED] FF Shifting Text with %-based margins on Resize

2007-01-29 Thread Chris Pallé
On Jan 25, 2007, at 10:05 PM, Gunlaug Sørtun wrote: Chris Pallé wrote: Is anyone familiar with this issue? I'm prototyping a site right now that does a weird thing when resizing the window in FF. The feature projects labels shift around and stick until after a reload. Safari handles it

[css-d] Content height nav issues

2007-01-29 Thread Daniel Hammond
Alright, I've got quite the unusual situation here... After testing my site in FF2, Opera, IE7, and IE6, the only browser that displays it correctly is IE6! FF2 and Opera show the navigation correctly, but the side borders of the container don't extend all the way to the bottom of the browser

Re: [css-d] Content height nav issues

2007-01-29 Thread Jason Pruim
On Jan 29, 2007, at 12:40 PM, Daniel Hammond wrote: Alright, I've got quite the unusual situation here... After testing my site in FF2, Opera, IE7, and IE6, the only browser that displays it correctly is IE6! FF2 and Opera show the navigation correctly, but the side borders of the

Re: [css-d] Content height nav issues

2007-01-29 Thread Chris Pallé
On Jan 29, 2007, at 12:40 PM, Daniel Hammond wrote: FF2 and Opera show the navigation correctly, but the side borders of the container don't extend all the way to the bottom of the browser window when there is enough content to require scrolling. Try taking the 100% off the height of

Re: [css-d] Content height nav issues

2007-01-29 Thread Daniel Hammond
| FF2 and Opera show the navigation correctly, but the side | borders of the | container don't extend all the way to the bottom of the | browser window when | there is enough content to require scrolling. | | IE7 shows the side borders correctly, but it messes up the navigation. I used

[css-d] Screen Shots

2007-01-29 Thread S. Humbal
Hi List First time posting; I have just put up a site which I constructed using CSS only second time using this. I worked from Book Bullet Proof Web Design and from this lists posts and archives. Thanks to all the very knowledgeable participants. CSS Validated at W3C XHTML Validated

Re: [css-d] Screen Shots

2007-01-29 Thread David Dorward
On 29/01/07, S. Humbal [EMAIL PROTECTED] wrote: 1. At screenshots images are not showing on several browsers. What am I doing wrong? At a guess, using a server that didn't respond quickly enough for the screenshot service's liking. 2. How do others deal with servers counters not

[css-d] Complex layout works on MSIE 5 6 but not 7

2007-01-29 Thread Stephane Bortzmeyer
The Web site is http://www.bortzmeyer.org/. It uses a complex layout which I did not write myself but copied from http://webhost.bridgew.edu/etribou/layouts/index.html. I do not really master it, unfortunately. It has a special rule for MSIE: !--[if IE] link rel=stylesheet type=text/css

Re: [css-d] Complex layout works on MSIE 5 6 but not 7

2007-01-29 Thread Chris Pallé
On Jan 29, 2007, at 3:09 PM, Stephane Bortzmeyer wrote: !--[if IE] link rel=stylesheet type=text/css media=screen href=fixed_ie.css / ![endif]-- That's a conditional statement. That's sending this SS to ANY version of IE. The original creator of this site has a special style

Re: [css-d] Content height nav issues

2007-01-29 Thread Gunlaug Sørtun
Daniel Hammond wrote: I used overflow:hidden to fix the side borders in FF and Opera, but that made it so IE6 doesn't scroll at all. When you use that method to contain floats, you must override it for IE6 (and older). IE6 will in cases like this otherwise hide everything that's beyond 100%

Re: [css-d] Complex layout works on MSIE 5 6 but not 7

2007-01-29 Thread Tribou, Eric
Hi, original author of that layout here. The layout in question is located at: http://webhost.bridgew.edu/etribou/layouts/2col_colors/beta/index.html This is a very old layout, when I was experimenting with means to create a float-based layout that allowed for separate background colors for the

Re: [css-d] Content height nav issues

2007-01-29 Thread Daniel Hammond
| Daniel Hammond wrote: | I used overflow:hidden to fix the side borders in FF and Opera, but | that made it so IE6 doesn't scroll at all. | | * html #container { | height: 100%; | overflow: visible; | } | | ...will work fine. You're the best, Georg. Now how about that navigation? Daniel

[css-d] Floats and Overflow

2007-01-29 Thread Tribou, Eric
Anyone using floated layouts have any tricks to share regarding the use of images or other objects within your floats that go wider than the float allows? That seems to be my biggest problem; things like images are thrown into columns that get too narrow and force columns to drop/wrap. I've

Re: [css-d] Floats and Overflow

2007-01-29 Thread ~davidLaakso
Tribou, Eric wrote: Anyone using floated layouts have any tricks to share regarding the use of images or other objects within your floats that go wider than the float allows? That seems to be my biggest problem; things like images are thrown into columns that get too narrow and force

[css-d] Sitegrinder

2007-01-29 Thread Randal Rust
Has anyone used this? It is a Photoshop plugin that claims to convert your Photoshop files to XHTML/CSS. http://www.medialab.com/sitegrinder/ -- Randal Rust R.Squared Communications www.r2communications.com __ css-discuss

Re: [css-d] Floats and Overflow

2007-01-29 Thread Philippe Wittenbergh
On Jan 30, 2007, at 6:40 AM, Tribou, Eric wrote: Anyone using floated layouts have any tricks to share regarding the use of images or other objects within your floats that go wider than the float allows? That seems to be my biggest problem; things like images are thrown into columns