Re: [WSG] Need a fresh eye - can anyone see what's wrong please?

2010-12-01 Thread Jon @ The PixelForge
I agree, consolidate background-image, background-repeat and *-position into
one 'background' statement. Easier and saves a few bytes.
Regards,

Jon Warner
Tel: 0788 99 424 30
http://thepixelforge.net/

57 Arnold Road
Eastleigh
Hampshire
SO50 5AR
England


On Wed, Dec 1, 2010 at 7:50 PM, Debbie Johnson  wrote:

> Mike -
> You have put the background color and image under background-image. Why
> don't you consolidate all of your backround statements into one:
>  #footer {
>color: #d9d9d9;
>background: #33 url("images/Footer_background_s1.jpg") repeat-x
> top;
>min-height: 96px;
> }
> Otherwise, you need to separate background-image and background-color.
> Debbie
>
>
> On Wed, 1 Dec 2010 15:50:16 +1100, "Mike Kear" 
> wrote:
> > I have a draft layout for a client that is fine in all respects except
> that
> > in IE8,  the background image in the footer is missing.
> >
> > Here's the page concerned:
> > http://afpwebworks.com/strikingdistance/index.cfm
> >
> > And the footer div rule is as follows for IE (I have a IE-only style
> sheet)
> > :
> >
> > #footer {
> >   color: #d9d9d9;
> >   background-image: #33 url("images/Footer_background_s1.jpg");
> >   background-repeat: repeat-x;
> >   background-position: top;
> >   min-height: 96px;
> > }
> >
> > Both the HTML and the CSS validate ok.
> >
> >
> > So does any one see what I have wrong for IE?
> >
> > Cheers
> > Mike Kear
> > Windsor, NSW, Australia
> > Adobe Certified Advanced ColdFusion Developer
> > AFP Webworks
> > http://afpwebworks.com
> > ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month
> >
> >
> >
> >
> > ***
> > List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
> > Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
> > Help: memberh...@webstandardsgroup.org
> > ***
>
>
> ***
> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
> Help: memberh...@webstandardsgroup.org
> ***
>
>


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***

Re: [WSG] Need a fresh eye - can anyone see what's wrong please?

2010-12-01 Thread Debbie Johnson
Mike -
You have put the background color and image under background-image. Why
don't you consolidate all of your backround statements into one:
 #footer {
color: #d9d9d9;
background: #33 url("images/Footer_background_s1.jpg") repeat-x top;
min-height: 96px;
}
Otherwise, you need to separate background-image and background-color.
Debbie


On Wed, 1 Dec 2010 15:50:16 +1100, "Mike Kear" 
wrote:
> I have a draft layout for a client that is fine in all respects except
that
> in IE8,  the background image in the footer is missing. 
> 
> Here's the page concerned:
> http://afpwebworks.com/strikingdistance/index.cfm
> 
> And the footer div rule is as follows for IE (I have a IE-only style
sheet)
> : 
> 
> #footer {
>   color: #d9d9d9;
>   background-image: #33 url("images/Footer_background_s1.jpg");
>   background-repeat: repeat-x;
>   background-position: top;
>   min-height: 96px;
> }
> 
> Both the HTML and the CSS validate ok. 
> 
> 
> So does any one see what I have wrong for IE?
> 
> Cheers
> Mike Kear
> Windsor, NSW, Australia
> Adobe Certified Advanced ColdFusion Developer 
> AFP Webworks
> http://afpwebworks.com 
> ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month
> 
> 
> 
> 
> ***
> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
> Help: memberh...@webstandardsgroup.org
> ***


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



RE: [WSG] Need a fresh eye - can anyone see what's wrong please?

2010-11-30 Thread Mike Kear
YEP!  That did the trick.   I thought i'd checked all those things, but i
missed that one on the IE-Only style sheet. 

Thanks.   I knew having a fresh eye look at it would see something that i
was too close to to notice -  couldn't see the wood for the trees.



Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer 
AFP Webworks
http://afpwebworks.com 
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month



-Original Message-
From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On
Behalf Of Tatham Oddie
Sent: Wednesday, 1 December 2010 4:14 PM
To: wsg@webstandardsgroup.org
Subject: RE: [WSG] Need a fresh eye - can anyone see what's wrong please?

Mike,

This line is invalid:

background-image: #33 url("images/Footer_background_s1.jpg");

You're defining both the color *and* the url in the image property.

Either change it to:

background-image: url("images/Footer_background_s1.jpg");
background-color: #33;

or:

background: #33 url("images/Footer_background_s1.jpg");

This is invalid across all browsers, it's just that IE8 is the only one that
seems to actually care.




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



RE: [WSG] Need a fresh eye - can anyone see what's wrong please?

2010-11-30 Thread Tatham Oddie
Mike,

This line is invalid:

background-image: #33 url("images/Footer_background_s1.jpg");

You're defining both the color *and* the url in the image property.

Either change it to:

background-image: url("images/Footer_background_s1.jpg");
background-color: #33;

or:

background: #33 url("images/Footer_background_s1.jpg");

This is invalid across all browsers, it's just that IE8 is the only one that
seems to actually care.


--
Tatham Oddie
au mob: +61 414 275 989, us cell: +1 213 280 9140, skype: tathamoddie
If you're printing this email, you're doing it wrong. This is a computer,
not a typewriter.

-Original Message-
From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On
Behalf Of Mike Kear
Sent: Wednesday, 1 December 2010 3:50 PM
To: wsg@webstandardsgroup.org
Subject: [WSG] Need a fresh eye - can anyone see what's wrong please?

I have a draft layout for a client that is fine in all respects except that
in IE8,  the background image in the footer is missing. 

Here's the page concerned:
http://afpwebworks.com/strikingdistance/index.cfm

And the footer div rule is as follows for IE (I have a IE-only style sheet)
: 

#footer {
color: #d9d9d9;
background-image: #33 url("images/Footer_background_s1.jpg");
background-repeat: repeat-x;
background-position: top;
min-height: 96px;
}

Both the HTML and the CSS validate ok. 


So does any one see what I have wrong for IE?

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer AFP Webworks
http://afpwebworks.com ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting
from AUD$15/month




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



RE: [WSG] Need a fresh eye - can anyone see what's wrong please?

2010-11-30 Thread Tatham Oddie
Mike,

This line is invalid:

background-image: #33 url("images/Footer_background_s1.jpg");

You're defining both the color *and* the url in the image property.

Either change it to:

background-image: url("images/Footer_background_s1.jpg");
background-color: #33;

or:

background: #33 url("images/Footer_background_s1.jpg");

This is invalid across all browsers, it's just that IE8 is the only one that
seems to actually care.


--
Tatham Oddie
au mob: +61 414 275 989, us cell: +1 213 280 9140, skype: tathamoddie
If you're printing this email, you're doing it wrong. This is a computer,
not a typewriter.

-Original Message-
From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On
Behalf Of Mike Kear
Sent: Wednesday, 1 December 2010 3:50 PM
To: wsg@webstandardsgroup.org
Subject: [WSG] Need a fresh eye - can anyone see what's wrong please?

I have a draft layout for a client that is fine in all respects except that
in IE8,  the background image in the footer is missing. 

Here's the page concerned:
http://afpwebworks.com/strikingdistance/index.cfm

And the footer div rule is as follows for IE (I have a IE-only style sheet)
: 

#footer {
color: #d9d9d9;
background-image: #33 url("images/Footer_background_s1.jpg");
background-repeat: repeat-x;
background-position: top;
min-height: 96px;
}

Both the HTML and the CSS validate ok. 


So does any one see what I have wrong for IE?

Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer AFP Webworks
http://afpwebworks.com ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting
from AUD$15/month




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***

smime.p7s
Description: S/MIME cryptographic signature