Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
#1 2010-03-10 14:00:14
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
ie6 conditional don't show up
…in this page
you can see it in a page source but not in ff firebug
Offline
#2 2010-03-11 07:51:11
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
Re: ie6 conditional don't show up
i’m afraid i expressed myself little badly.
i was trying to say that this ie6 conditional (i think this should be correct code)
<!--[if IE 6]><link rel="stylesheet" type="text/css" media="screen" href="http://www.eoy.ee/themes/eoy/ie6.css" /><![endif]-->
doesn’t somehow affect the ie6. any ideas why?
Last edited by Gallex (2010-03-11 07:51:32)
Offline
Re: ie6 conditional don't show up
I wonder if it’s a language or character set issue. When I look at the page source for that page, all the linked resources except your ie6 stylesheet seem to have an extra multibyte character at the end.
Code is topiary
Offline
#4 2010-03-11 13:54:18
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
Re: ie6 conditional don't show up
jsoo wrote:
I wonder if it’s a language or character set issue. When I look at the page source for that page, all the linked resources except your ie6 stylesheet seem to have an extra multibyte character at the end.
you are right – really it is. what i could try here, have you any thoughts?
Offline
#5 2010-03-11 14:46:57
- uli
- Moderator
- From: Cologne
- Registered: 2006-08-15
- Posts: 4,306
Re: ie6 conditional don't show up
Perhaps this:
Is:
#container, #eoy-footer-content {
width:expression(document.body.clientWidth > 1152? "1152px" : document.body.clientWidth < 1000? "1000px" : "auto");
}
should be:
#container, #eoy-footer-content {
width:expression(document.body.clientWidth > 1152? "1152px" : "auto" && document.body.clientWidth < 1000? "1000px" : "auto");
}
In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links
Offline
Re: ie6 conditional don't show up
Gallex wrote:
you are right – really it is. what i could try here, have you any thoughts?
What are you doing differently to produce the href
value for the ie6 link?
Code is topiary
Offline
Re: ie6 conditional don't show up
BTW, you have duplicated this:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Code is topiary
Offline
#8 2010-03-12 11:12:31
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
Re: ie6 conditional don't show up
uli wrote:
Perhaps this:
bc.. #container, #eoy-footer-content {
width:expression(document.body.clientWidth > 1152? “1152px” : “auto” && document.body.clientWidth < 1000? “1000px” : “auto”);
}
didn’t help either
i have to admit – however, this ie6 conditional affects ie6, but this width:expression… attribute don’t work anymore. it worked well at the beginning, but in some stage stopped. to be finaly honest – this is drupal based page and i help one person to get layout correctly work
Offline
#9 2010-03-16 08:48:18
- Gallex
- Member
- Registered: 2006-10-08
- Posts: 1,308
Re: ie6 conditional don't show up
even setting fixed width for ie6 not working :(
wierd that just width attribute not working. when i set for example h1 differently for ie6 – it’s working
Offline
Pages: 1