|
Your web editor is set up to use CSS. In your code you have:
<style type="text/css">
<!--
.style1 {font-family: Arial, Helvetica, sans-serif}
-->
</style>
When you are making text such as "This text is also affected.", you must be setting it to "Style1" which refers to the CSS.
<p align="center"><span class="style1">This text is also affected. </span></p>
You can either switch off CSS in the web editor's preferences and retype the text or you can change the code yourself:
<p align="center"><font color="#000000" size="3" face="Arial, Helvetica, sans-serif">This text is also affected. </font></p>
So now, instead of using CSS "Style1", you are wrapping FONT tags which will set the font, size & colour locally. You will obviously need to do this for all the text on the page.
Interesting site btw.
|