Strangeplant
04-05-2008, 08:23 PM
The basic font style and size are wiped from the code by FF for body and p (probing with Firebug.) Doesn't matter if I include them in script or import them via a link. What gives? If I view code in browser, looks OK. The real funny thing is that it works in IE. Most frustrating because this works for two other websites. Is this a server thing, but I don't see how. Please try this link for comparing between FF and IE: http://earth.engr.ccny.cuny.edu/noaa/wc/ws/geo/index.php What am I stupidly overlooking?
The font below the image should be in Verdana, not Times. The page footing should be in 8pt, and the heading over the image should be 14 pt.
Now, another thing: in several other sites, I use <p0> and <p1> and <p2>, etc as different paragraph style tags, and define them in the CSS file as below, and it works in all browsers, but not with this php served page:
body, p, p0, p1 { /* used in index.html */
font-family: Verdana;
font-weight: bold;
letter-spacing: 0;
text-align: justify;
word-spacing: normal;
text-decoration: none;
/* color: #000; */
}
p {
font-size: 12pt;
line-height: 16pt;
}
p0 {
font-size: 10pt;
line-height: 14pt;
}
p1 {
font-size: 14pt;
line-height: 16pt;
text-align: center;
}And, the CSS code does not validate, so could this be that the server is not set-up correctly? (Yes, this is a new server.)
The font below the image should be in Verdana, not Times. The page footing should be in 8pt, and the heading over the image should be 14 pt.
Now, another thing: in several other sites, I use <p0> and <p1> and <p2>, etc as different paragraph style tags, and define them in the CSS file as below, and it works in all browsers, but not with this php served page:
body, p, p0, p1 { /* used in index.html */
font-family: Verdana;
font-weight: bold;
letter-spacing: 0;
text-align: justify;
word-spacing: normal;
text-decoration: none;
/* color: #000; */
}
p {
font-size: 12pt;
line-height: 16pt;
}
p0 {
font-size: 10pt;
line-height: 14pt;
}
p1 {
font-size: 14pt;
line-height: 16pt;
text-align: center;
}And, the CSS code does not validate, so could this be that the server is not set-up correctly? (Yes, this is a new server.)