User / Developer Forum
Text not rendering in IE6
sgo425
|
4 Feb 2010 9:15
Sorry, URL is http://www.samorchard.com/1.html
sgo425
|
4 Feb 2010 9:26
It's worth noting that websafe text DOES flash up for a second, but disappears once the rest of the page loads.
Ajay
|
11 Feb 2010 5:31
Hi,
did u find a solution for the above issue?
I have a similar issue, with an arabic font.. all except IE is rendering the text perfectly.. only IE hides some words in the end of a line..
http://www.corebiztechsolutions.com/test/ i have uploaded the sample here
any help will be appreciated!
Ajay
did u find a solution for the above issue?
I have a similar issue, with an arabic font.. all except IE is rendering the text perfectly.. only IE hides some words in the end of a line..
http://www.corebiztechsolutions.com/test/ i have uploaded the sample here
any help will be appreciated!
Ajay
Ryan Brennan
|
23 Apr 2010 11:26
Hey
I had the same problem and still am with IE8! However, if you add "visibility: visible;" to your CSS for the element you are styling you should be able to see the text again in the default website font. This will only work on custom element however, and doesn't appear to affect H1,H2,H3 elements etc.
Eg.
CSS:
div.bannertext {
font-family: Cora Basic, Arial, serif;
font-size: 28px;
visibility: visible;
}
HTML:
<div class="bannercar"><img src="images/cars/lambo.png" /></div>
<div class="typeface-js bannertext">
This will be the default font and will be visible
<h3>This will remain invisible however</h3></div>
I had the same problem and still am with IE8! However, if you add "visibility: visible;" to your CSS for the element you are styling you should be able to see the text again in the default website font. This will only work on custom element however, and doesn't appear to affect H1,H2,H3 elements etc.
Eg.
CSS:
div.bannertext {
font-family: Cora Basic, Arial, serif;
font-size: 28px;
visibility: visible;
}
HTML:
<div class="bannercar"><img src="images/cars/lambo.png" /></div>
<div class="typeface-js bannertext">
This will be the default font and will be visible
<h3>This will remain invisible however</h3></div>
Post a Reply
Not sure what's causing this. The text shows up "invisible", in IE6, but works for later versions and also Firefox/Chrome.
I'd be willing to sacrifice the font replacement in IE6 and just use a regular web safe font - anything is better than invisible text.
Any ideas?