Hi there in my site here, the footer looks great in All browsers except IE 8.
http://apollo.skookumx.com/category
The footer should just have a grey background and link color... anyone know what the story is with that?? Would be greatly appreciated.
#footer {
background-color: #4B4B4B !important;
color: #DEE2E3;
font-family: Arial,Helvetica,sans-serif;
font-size: 11px;
margin-left: auto;
margin-right: auto;
text-transform: none;
width: 1140px;
}
also tried a hack like this
#footer {
background-color: #4B4B4B !important;
background-color: #4B4B4B\9; /* IE8 and below */
color: #DEE2E3;
font-family: Arial,Helvetica,sans-serif;
font-size: 11px;
margin-left: auto;
margin-right: auto;
text-transform: none;
width: 1140px;
}
|