Click to See Complete Forum and Search --> : Blue color for no reason in text?


deepakdatta
10-25-2003, 09:57 AM
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.

Second, the menu dividing text has become blue. How to correct this?

http://www.naturerugs.com/testimonials-form.asp

DaveSW
10-25-2003, 10:25 AM
You have a small block of css at the top of the page which is screwing it up.

<style>
<!--
.text {
font-size : 18px;
font-family : Verdana, Arial;
font-weight : normal;
font-style : normal;
color : navy;
}

div.MsoNormal
{mso-style-parent:"";
margin-bottom:.0001pt;
font-size:12.0pt;
font-family:"Times New Roman";
margin-left:0in; margin-right:0in; margin-top:0in}
-->
</style>

Try replacing it with:

<style>
<!--
div.MsoNormal
{mso-style-parent:"";
margin-bottom:0px;
font-size:12px;
font-family:"Times New Roman";
margin-left:0in; margin-right:0in; margin-top:0in}
-->
</style>
or just removing the entire style block. You can always paste it back in if it doesn't work.

I'm assuming you have something else on the page with a class MsoNormal to need the second declaration.

That should fix both problems.

deepakdatta
10-25-2003, 11:03 AM
Thanks, it works!!

DaveSW
10-25-2003, 02:43 PM
No prob :D