Re: [css-d] IE not hiding overflow?

2009-01-13 Thread Richard Grevers
On Wed, Jan 14, 2009 at 7:04 PM, Daniel Hammond wrote: > I have three things for you guys to look at. IE6 and IE7 are the only > browsers having this problem. > > Here's the first thing: > URL: http://www.studentremix.org/ms/index.htm > CSS: http://www.studentremix.org/ms/ms.css > Screenshot of th

[css-d] IE not hiding overflow?

2009-01-13 Thread Daniel Hammond
I have three things for you guys to look at. IE6 and IE7 are the only browsers having this problem. Here's the first thing: URL: http://www.studentremix.org/ms/index.htm CSS: http://www.studentremix.org/ms/ms.css Screenshot of the problem: http://www.studentremix.org/issues/ms.jpg The red arrows s

Re: [css-d] IE pushes up my sidebars

2009-01-13 Thread Gunlaug Sørtun
John Shepard wrote: > Thanks for the heads up on validation. Looking better now but still > having the problem in IE. >>> http://earthpedal.com IE6 doesn't push up the side columns, it expands the #masthead. It's IE's old "auto-expansion bug", and that can be "cured" by adding... * html #masthea

Re: [css-d] IE pushes up my sidebars

2009-01-13 Thread John Shepard
Thanks for the heads up on validation. Looking better now but still having the problem in IE. John On 1/13/09 5:11 PM, "Bill Brown" wrote: > John Shepard wrote: >> IE pushes up both right and left sidebars on my homepage. >> To view, go to: http://earthpedal.com >> Anyone have a fix? >> >> Th

Re: [css-d] Search Box Alignment

2009-01-13 Thread David Laakso
Del Wegener wrote: >> How can I get these three elements to line up? Preferably at the top of >> the >> red-bordered div. >> >> Thanks. >> Del >> > Never mind. I got it worked out. > Del > > Good. On now to coping with grand mal seizure?

Re: [css-d] IE pushes up my sidebars

2009-01-13 Thread Bill Brown
> It's not really fair to claim they need to validate if the answer you supply > them is invalid itself. > > Other methods of gaining layout are available, height: 0 in a conditional > comment being one I sometimes you. You can always view the chart on > havingLayout [1] as an example of other met

Re: [css-d] Search Box Alignment

2009-01-13 Thread Del Wegener
> How can I get these three elements to line up? Preferably at the top of > the > red-bordered div. > > Thanks. > Del Never mind. I got it worked out. Del __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.or

Re: [css-d] IE pushes up my sidebars

2009-01-13 Thread Jack Timmons
On Tue, Jan 13, 2009 at 7:11 PM, Bill Brown wrote: > John Shepard wrote: > > IE pushes up both right and left sidebars on my homepage. > > To view, go to: http://earthpedal.com > > Anyone have a fix? > > > > Thanks ahead! > > > > John > > Hi John, > > Try this: > #content{zoom:1} > > Also maybe w

Re: [css-d] IE pushes up my sidebars

2009-01-13 Thread Bill Brown
John Shepard wrote: > IE pushes up both right and left sidebars on my homepage. > To view, go to: http://earthpedal.com > Anyone have a fix? > > Thanks ahead! > > John Hi John, Try this: #content{zoom:1} Also maybe wanna have a look at validating the source code, which has a few errors. Hope

Re: [css-d] mac ie/5.2

2009-01-13 Thread David Laakso
Jonny Stephens wrote: > On Jan 13, 2009, at 9:51 PM, David Laakso wrote: > >> Nav whacked. Fix appreciated. >> >> ~d > > Not the most elegant filter, but adding this seems to pull it into shape: > > /*\*//*/ > > * #e ul li a, #e b {width:1px;

Re: [css-d] mac ie/5.2

2009-01-13 Thread Jonny Stephens
On Jan 13, 2009, at 9:51 PM, David Laakso wrote: > Nav whacked. Fix appreciated. > > ~d Not the most elegant filter, but adding this seems to pull it into shape: /*\*//*/ * #e ul li a, #e b {width:1px; white-space:nowrap} /**/ Modified

[css-d] IE pushes up my sidebars

2009-01-13 Thread John Shepard
IE pushes up both right and left sidebars on my homepage. To view, go to: http://earthpedal.com Anyone have a fix? Thanks ahead! John __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d

Re: [css-d] best practices

2009-01-13 Thread Kevin Warrington
A simple rule of thumb; Use to attach stylesheets to a document. Use @import to attach stylesheets to stylesheets. also has the advantage of defining relationships between documents, eg. preferred and alternate stylesheets, see: http://www.w3.org/TR/REC-html40/present/styles.html#h-14.3.1 Kevi

[css-d] Search Box Alignment

2009-01-13 Thread Del Wegener
Good Day; Please look at http://www.edi-cp.com/homepage2009_b/edi-index.shtml In FF the word Search: the textfield, and the green arrow graphic line up perfectly. In IE7 the word Search and the textfield are several pixels too low. The red box is a temporary border on the div with ID search_etc to

[css-d] mac ie/5.2

2009-01-13 Thread David Laakso
Nav whacked. Fix appreciated. ~d __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.co

Re: [css-d] Background

2009-01-13 Thread Erika Meyer
David Dorward wrote: > 2009/1/13 Keith Kaiser : >> When setting the background in CSS can you set the image width at the >> same time? > > CSS currently provides no way to scale background images at all. > > I seem to recall CSS 3 is proposing something to make that possible, > but support isn't

Re: [css-d] IE and background colour

2009-01-13 Thread Ingo Chao
Opera does not crash because of the proprietary (and of course, invalid) zoom property; Opera ignores it. Ingo __ css-discuss [cs...@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://

Re: [css-d] Background

2009-01-13 Thread peter hyde-smith
Bill Brown wrote: > Keith Kaiser wrote: > > When setting the background in CSS can you set the image width at the > > same time? > > > > Example; > > background: #00ff00 url('smiley.gif width:50') no-repeat fixed center; > > Or something like that anyway. > > > > Thanks. > > > Hi Keit

Re: [css-d] Background

2009-01-13 Thread James Hindle
You cannot specify the width of the background-image in the "background" shorthand property. You'll need to make the image the exact width that you need. When setting a background you are limited to background-image,background-repeat,background-position, background-color and background attachment.

Re: [css-d] Background

2009-01-13 Thread neal
> When setting the background in CSS can you set the image width at the > same time? > > Example; > background: #00ff00 url('smiley.gif width:50') no-repeat fixed center; > No you cannot - but you can set the width of the background container ~Neal

Re: [css-d] Background

2009-01-13 Thread David Dorward
2009/1/13 Keith Kaiser : > When setting the background in CSS can you set the image width at the > same time? CSS currently provides no way to scale background images at all. I seem to recall CSS 3 is proposing something to make that possible, but support isn't strong yet. People who really want

Re: [css-d] Background

2009-01-13 Thread Bill Brown
Keith Kaiser wrote: > When setting the background in CSS can you set the image width at the > same time? > > Example; > background: #00ff00 url('smiley.gif width:50') no-repeat fixed center; > > Or something like that anyway. > > Thanks. Hi Keith, The short answer is "No, you can't." But t

Re: [css-d] Safari, Opera, Chrome pushing image to bottom of screen

2009-01-13 Thread Daniel Hammond
| > URL: http://www.studentremix.org | > CSS: http://www.studentremix.org/landing.css | > | > For a reference of what this page should look like, look at | it in FF | > or IE. | > They display it correctly. Safari, Opera, and Google Chrome | push the | > blue | > image to the bottom of the sc

[css-d] Background

2009-01-13 Thread Keith Kaiser
When setting the background in CSS can you set the image width at the same time? Example; background: #00ff00 url('smiley.gif width:50') no-repeat fixed center; Or something like that anyway. Thanks. __ css-discuss [cs...@lis

Re: [css-d] IE and background colour

2009-01-13 Thread David Laakso
Elle Meredith wrote: > > >> The site is at: http://farmpeacelove.com/italiano/alloggio >> > > The only one I don't understand from the above errors is the "Property > zoom doesn't exist : 1" -- I just don't know enough about zoom: 1 > besides that I know it is used for having layout. > >

Re: [css-d] best practices

2009-01-13 Thread Thierry Koblentz
> -Original Message- > From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css- > discuss.org] On Behalf Of dsm...@flvs.net > Sent: Monday, January 12, 2009 9:05 AM > To: css-d@lists.css-discuss.org > Subject: [css-d] best practices > > Hi > I teach Web Design and really

Re: [css-d] Browsershot alternative

2009-01-13 Thread Gabriel de Oliveira
On Tue, Jan 13, 2009 at 1:37 AM, Del Wegener wrote: > I have seen references to browsershot on this list. > Is there another similar site? There is also IE NetRender - http://ipinfo.info/netrenderer/index.php "IE NetRenderer allows you to check how a website is rendered by Internet Explorer 7, 6

Re: [css-d] Browsershot alternative

2009-01-13 Thread Bill Brown
>>> I have seen references to browsershot on this list. >>> Is there another similar site? >>> Thanks >>> Del Hi Del, BrowserCam.com - $39.95/month to $89.95/month BrowserShots.org - free BrowsrCamp.com - $19/month - Mac only LitmusApp.com - $49/month CrossBrowserTesting.com - Pay

Re: [css-d] IE and background colour

2009-01-13 Thread Philippe Wittenbergh
On Jan 13, 2009, at 6:33 PM, Elle Meredith wrote: > The question is: can't I use CSS3 properties? and if I do implement > CSS3 properties, would they validate in a CSS 2.1 validator? No. But if you go to the css validator there is an option to select to validate against the css3 profile (under

Re: [css-d] IE and background colour

2009-01-13 Thread Elle Meredith
On 13/01/2009, at 6:11 PM, David Laakso wrote: > The site is at: http://farmpeacelove.com/italiano/alloggio > >>> >> At the moment I only test the page through browsershot.org -- and >> zoom: 1 didn't fix the problem. >> > > As of this writing your page is crashing: > > > Validate the

Re: [css-d] IE and background colour

2009-01-13 Thread David Laakso
Elle Meredith wrote: > The site is at: http://farmpeacelove.com/italiano/alloggio >> > At the moment I only test the page through browsershot.org -- and zoom: > 1 didn't fix the problem. > > Elle > As of this writing your page is crashing: Version 10.00 Alpha Build 6166 Plat