PDA

View Full Version : My site in IE vs FF


uitdenbosch
Feb-06-2009, 04:47 PM
My site seems to not be workin in IE (of course) but it works great in Firefox.
Anybody able to figure out why?

:scratch

Its like the last fix before its all done!! :clap

jfriend
Feb-06-2009, 05:00 PM
My site seems to not be workin in IE (of course) but it works great in Firefox.
Anybody able to figure out why?

:scratch

Its like the last fix before its all done!! :clap

Can you share with us what is not working?

J Allen
Feb-06-2009, 05:02 PM
My site seems to not be workin in IE (of course) but it works great in Firefox.
Anybody able to figure out why?

:scratch

Its like the last fix before its all done!! :clap

Remove this bit in your CSS Box:









// fix the pesky pipes

YE.onAvailable("cobrand_footer", function() {this.innerHTML = this.innerHTML.replace(/\||what are feeds\?/gi, '');});








I'm not sure if that will clear it up or not, but that code belongs in your Java-Script.

jfriend
Feb-06-2009, 05:25 PM
I don't know why your navbar is misbehaving in IE, but we can fix it this way.

For your navbar, add this part in red:

#my_header {
margin: 10px 40px 15px; /* top right/left bottom*/
padding: 0 20px 5px; /* top right/left bottom*/
border-bottom: 1px solid #ba4b0a;
position:relative;
}

And add this rule:

#navcontainer {position:absolute; right:0px;}

uitdenbosch
Feb-07-2009, 03:55 AM
I don't know why your navbar is misbehaving in IE, but we can fix it this way.

For your navbar, add this part in red:

#my_header {
margin: 10px 40px 15px; /* top right/left bottom*/
padding: 0 20px 5px; /* top right/left bottom*/
border-bottom: 1px solid #ba4b0a;
position:relative;
}

And add this rule:

#navcontainer {position:absolute; right:0px;}

This actually took care of it, thanks guys.
Except, it seems to not really line up the links with the end of the line.
They get pushed passed it a bit. Could be my resolution or maybe the margin?

jfriend
Feb-07-2009, 07:32 AM
This actually took care of it, thanks guys.
Except, it seems to not really line up the links with the end of the line.
They get pushed passed it a bit. Could be my resolution or maybe the margin? I don't believe they are past the end of the line, but if you want to play with their position, then just modify this number in you CSS:

#navcontainer {position:absolute; right:0px;}

uitdenbosch
Feb-07-2009, 07:48 AM
I don't believe they are past the end of the line, but if you want to play with their position, then just modify this number in you CSS:

#navcontainer {position:absolute; right:0px;}

Probably my resolution or something.... but ill try that out