Blue color for no reason in text?

liunx

Guest
Hi Great Experts another one I am strugling with. In the below the form page. The bottom menu is folding to the second line, this is not true for other pages using the same code.<br />
<br />
Second, the menu dividing text has become blue. How to correct this?<br />
<br />
<!-- m --><a class="postlink" href="http://www.naturerugs.com/testimonials-form.asp">http://www.naturerugs.com/testimonials-form.asp</a><!-- m --><!--content-->You have a small block of css at the top of the page which is screwing it up.<br />
<br />
<style><br />
<!--<br />
.text {<br />
font-size : 18px;<br />
font-family : Verdana, Arial;<br />
font-weight : normal;<br />
font-style : normal;<br />
color : navy;<br />
}<br />
<br />
div.MsoNormal<br />
{mso-style-parent:"";<br />
margin-bottom:.0001pt;<br />
font-size:12.0pt;<br />
font-family:"Times New Roman";<br />
margin-left:0in; margin-right:0in; margin-top:0in}<br />
--><br />
</style><br />
<br />
Try replacing it with:<br />
<br />
<style><br />
<!--<br />
div.MsoNormal<br />
{mso-style-parent:"";<br />
margin-bottom:0px;<br />
font-size:12px;<br />
font-family:"Times New Roman";<br />
margin-left:0in; margin-right:0in; margin-top:0in}<br />
--><br />
</style><br />
or just removing the entire style block. You can always paste it back in if it doesn't work.<br />
<br />
I'm assuming you have something else on the page with a class MsoNormal to need the second declaration.<br />
<br />
That should fix both problems.<!--content-->Thanks, it works!!<!--content-->No prob :D<!--content-->
 
Back
Top