Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Footer Issue in IE 6 & 7 Re: Footer Issue in IE 6 & 7

#77357
virtual
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.