In the editor, I change a font color to orange (#FF9900) and it displays properly.
I submit the file and the HTML is stored in a .txt file that is then recalled on a news page.
However, when I view the entry on the news page the font color is green (#00F900) instead of orange.
Incredibly frustrating, can anyone help me?
I submit the file and the HTML is stored in a .txt file that is then recalled on a news page.
However, when I view the entry on the news page the font color is green (#00F900) instead of orange.
Incredibly frustrating, can anyone help me?
RE: Strange error involving font colors
RE: Strange error involving font colors
The FCKeditor deposits the code into a text file (news.txt) and the news page opens that text file using <?php include('news.txt'); ?>
Inside the news.txt file, the code appears perfectly:
<p><strong><font color="#0000ff">BLUE</font><font color="#ff0000"> RED </font><font color="#339966">GREEN</font><font color="#339966"> </font><font color="#ff9900">ORANGE</font></strong></p>
The displayed source code on the news page is:
<p><strong><font color="#0000f0">BLUE</font><font color="#00f000"> RED </font><font color="#003960">GREEN</font><font color="#003960"> </font><font color="#00f900">ORANGE</font>
Very peculiar...
RE: Strange error involving font colors
Hopefully this helps anyone who may have a similar issue.