[css-d] image replacement not working in IE6

2008-12-12 Thread Debbie Campbell
In this page:

 http://www.redkitecreative.com/projects/hixon/test.php

My H1 tag isn't being replaced - or rather the image flashes for a 
second then disappears. Can someone help?

-- 
Debbie Campbell
www.redkitecreative.com
__
css-discuss [cs...@lists.css-discuss.org]
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/


Re: [css-d] image replacement not working in IE6

2008-12-12 Thread David Hucklesby
On Fri, 12 Dec 2008 12:32:05 -0700, Debbie Campbell wrote:
 In this page:

 http://www.redkitecreative.com/projects/hixon/test.php

 My H1 tag isn't being replaced - or rather the image flashes for a second then
 disappears. Can someone help?


That had me puzzled for a while, as the image replacement works in most
of my browsers. Eventually I used IE 6 and saw what you were talking about.

Giving explicit top: 0; left; 0; to the rule for h1.h1-home span 
will fix it on that browser and is fine on all others.

BTW - you have that rule duplicated on lines 279 and 291 
of styles_hixon.css.

Cordially,
David
--

__
css-discuss [cs...@lists.css-discuss.org]
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/


Re: [css-d] image replacement not working in IE6

2008-12-12 Thread Virgilio Quilario
hi,

consider this html code:

h1 class=h1-homespannorthern colorado's exclusive providers of
interior design/span/h1

here is the css for replacing the text.

h1.h1-home {
width:380px;
height:55px;
background:url(../images/h1_home.gif) no-repeat scroll 0 0;
overflow:auto;
}
h1.h1-home span {
text-indent:-1000em;
display:block;
}

hope that helps.

---
Virgilio Quilario Jr.
The Practical Web Site Development Resource http://www.jampmark.com/
On Sat, Dec 13, 2008 at 3:32 AM, Debbie Campbell 
d...@redkitecreative.comwrote:

 In this page:

  http://www.redkitecreative.com/projects/hixon/test.php

 My H1 tag isn't being replaced - or rather the image flashes for a
 second then disappears. Can someone help?

 --
 Debbie Campbell
 www.redkitecreative.com
 __
 css-discuss [cs...@lists.css-discuss.org]
 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-discuss [cs...@lists.css-discuss.org]
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/