5rent
01-31-2006, 12:54 PM
Need help. I have an irate customer who is running IE 5.2 on Mac. She can not view the webpage:
http://5rent.com/1518
She just gets a blank screen.
I set up many CSS styles in beginning of code, I think the issue is located there. Can someone take a look at code and give me their thoughts?
I have no problem viewing page in IE 6.0, Netscape, or Firefox.
Thanks in advance.
bpat1434
01-31-2006, 01:08 PM
FREDERICK MD!!! w00t w00t!!
Gotta throw it up for my home towns next-door-neighbor
In your style code, you only need one opening and one closing comment. So your style code should be:
<!--
.style20 {
font-size: 20px;
font-family: "Times New Roman", Times, serif;
color: #000000;
font-style: normal;
line-height: normal;
font-weight: normal;
text-transform: none;
}
.style18 {
font-size: 18px;
font-family: "Times New Roman", Times, serif;
color: #000000;
font-style: normal;
line-height: normal;
font-weight: normal;
text-transform: none;
}
.style17 {
font-size: 17px;
font-family: "Times New Roman", Times, serif;
color: #000000;
font-style: normal;
line-height: normal;
font-weight: normal;
text-transform: none;
}
.style16 {
font-size: 16px;
font-family: "Times New Roman", Times, serif;
color: #000000;
font-style: normal;
line-height: normal;
font-weight: normal;
text-transform: none;
}
.style15 {
font-size: 15px;
font-family: "Times New Roman", Times, serif;
color: #000000;
font-style: normal;
line-height: normal;
font-weight: normal;
text-transform: none;
}
.style13 {
font-size: 13px;
font-family: "Times New Roman", Times, serif;
color: #000000;
font-style: normal;
line-height: normal;
font-weight: normal;
text-transform: none;
}
.style12 {
font-size: 12px;
font-family: "Times New Roman", Times, serif;
color: #000000;
font-style: normal;
line-height: normal;
font-weight: normal;
text-transform: none;
}
.style11 {
font-size: 11px;
font-family: "Times New Roman", Times, serif;
color: #000000;
font-style: normal;
line-height: normal;
font-weight: normal;
text-transform: none;
}
.style9 {
font-size: 9px;
font-family: "Times New Roman", Times, serif;
color: #000000;
font-style: normal;
line-height: normal;
font-weight: normal;
text-transform: none;
}
.style33 {
font-size: 20px; font-family: "Times New Roman", Times, serif; color: #000000; font-style: normal; line-height: normal; font-weight: bold; text-transform: none;
}
-->
Then, anything IE 5 & down won't see it.
You might want to put (above the commented style) some basic CSS that any browser can interpret. See if that helps.
5rent
02-05-2006, 03:49 PM
It worked! Thanks for info.