Home › Forums › CSS › Footer Issue in IE 6 & 7 › Re: Footer Issue in IE 6 & 7
June 8, 2010 at 2:12 pm
#77357
Participant
You will have to create and IE specific stylesheet for 6 and 7 to deal with the issues, and link to it in the <head> section with a conditional comment like this if the issues are the same for both:
<!–[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="iestyle.css" />
<![endif]–>
You only need to put the information that needs correcting for IE6 and 7 in this stylesheet, not all the CSS.