Amongst other things, I use my webpage to aggregate RSS feeds - courtesy of MagpieRSS. But yesterday, the PHP page went weird: The font shrank.
On every page of my website, I don't define fonts - just leave it up to the browser's default. Every other page still has normal-sized, readable fonts. The only one that's changed is my RSS aggregating PHP page. And I can't find any reason why!
Here's a sample of a normal webpage, along with the HTML headers:
Normal
Code:
<HTML>
<BODY bgcolor="#FFFFFF" VLINK="#OOOOFF" ALINK="#FFOOOO">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<TITLE>Linux @ OneAndOneIs2</title>
<P><IMG SRC="http://linux.oneandoneis2.org/tux.png"><IMG SRC="http://www.oneandoneis2.org/Pix/1+1=2.png">
<H1>Linux @ OneAndOneIs2</H1>
<FONT SIZE=2><P>(The geeky stuff)</FONT>
<P>I first became. . .
And here's a sample of my news page, plus the HTML:
Abnormal
Code:
HTML>
<meta http-equiv="refresh" content="600">
<BODY bgcolor="#FFFFFF" VLINK="#OOOOFF" ALINK="#FFOOOO">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<TITLE>News</title>
<TABLE border=0 width=100%>
<TR><TD colspan=2>. . .
As you can see, nothing whatsoever relating to fonts in either. The fonts are still the same when viewed from Firefox in Windows, it's only Firefox on my Linux PC that's showing the fonts weirdly, and only on this one page.
Any ideas what's causing this?