Re: [css-d] Background missing in IE

2008-03-14 Thread Gunlaug Sørtun
Jehangir Larry wrote:
 Pls see http://www.neelamindore.com/1.html The background (gif image,
 not png) appears in FF but not IE incl. IE7.

Put a space after the url parenthesis  - before repeat, like so...
background:url(test_08_0314_files/6bg.gif) repeat;
...otherwise IE/win won't recognize that rule.

regards
Georg
-- 
http://www.gunlaug.no
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Background missing in IE

2008-03-13 Thread Jehangir Larry
Pls see http://www.neelamindore.com/1.html
The background (gif image, not png) appears in FF but not IE incl. IE7.
Strange.
Grateful for help.

-- 
Best,
JL


Jehangir Larry

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Background Missing in IE Mac

2005-09-25 Thread Hershel Robinson

This page:

URL: http://www.scarabbooks.com/uk/passSRev.php
CSS: http://www.scarabbooks.com/main.css

apparently shows up with no background image in IE Mac. It must be every 
page in the site in reality, as they all use that CSS file. The relevant 
CSS appears to be this:


h1 { padding:0; margin:0; height: 67px; font-size: 16pt; color: #FFF;
background: url('img/headBkng.jpg') repeat-y;}

although I'm not entirely sure what the missing background is as I don't 
have access to a Mac and iCapture has been down for a day or so.


Anyone know what's the issue? The background looks as desired in IE and 
FF on Windows. There should be the text Passing Time in the Loo - 
Shakespeare - Reviews and PR and an image that says Scarab London New 
York on top of a grayish background image.


Thank you.

Hershel
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Background Missing in IE Mac

2005-09-25 Thread Yvonne Adams

Hershel Robinson wrote:



h1 { padding:0; margin:0; height: 67px; font-size: 16pt; color: #FFF;
background: url('img/headBkng.jpg') repeat-y;}


IE Mac is chocking on the single quotes in the url. Leave them out and 
you should be okay (assuming the path is okay otherwise)


Yvonne
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Background Missing in IE Mac

2005-09-25 Thread David Dorward
On 25/09/05, Hershel Robinson [EMAIL PROTECTED] wrote:

 apparently shows up with no background image in IE Mac

 h1 { padding:0; margin:0; height: 67px; font-size: 16pt; color: #FFF;
 background: url('img/headBkng.jpg') repeat-y;}

IE/Mac can't cope with single quotes in url() values. Either get rid
of the quotes entirely or replace them with  characters.

(BTW, pt units considered harmful:
http://css-discuss.incutio.com/?page=UsingPoints )

--
David Dorward http://dorward.me.ukhttp://blog.dorward.me.uk
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Background Missing in IE Mac

2005-09-25 Thread Hershel Robinson

IE/Mac can't cope with single quotes in url() values. Either get rid
of the quotes entirely or replace them with  characters.


Yes, that did it. Thank you and thanks to Yvonne.


(BTW, pt units considered harmful:
http://css-discuss.incutio.com/?page=UsingPoints )


I'm with you, brother. As a matter of fact, I tried explaining that to 
the 'graphic designer' who designed the site and he wasn't interested. 
He wanted basically reproductions of his PDFs.


Eventually the client realized that it wasn't coming out right and he 
changed his mind to agree with me. I fixed some of the font sizes, but 
not all.


In the header, anyhow, I actually want it fixed so that it fits 
correctly into the background image. I am not concerned if that small 
piece of text is not flexible. The rest of the page should be of course. 
When I have time, I will try to fix it.


Thanks,
Hershel
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Background Missing in IE Mac

2005-09-25 Thread David Dorward
On 25/09/05, Hershel Robinson [EMAIL PROTECTED] wrote:
 In the header, anyhow, I actually want it fixed so that it fits
 correctly into the background image.

But the size of the background image (and element) is fixed in pixels.
The number of points per inch is 72 (assuming the system is configured
correctly) but the number of pixels per inch depends on the screen
size and system resolution, so by mixing points and pixel units you
can't know if it will fit correctly into the background image.

--
David Dorward http://dorward.me.ukhttp://blog.dorward.me.uk
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/