Re: Firefox H1 text is Red, Black in I.E. Help please!
The quickest way for you to fix this, as suggested above is probably to add style internally to the h1 tag. Its a kludge but it will fix any inheritance issues if you're struggling with troubleshooting the CSS.
Use a global editing facility so you only have to do it once. Dreamweaver allows you to do this, or you could get a text editor which allows you to make global changes such as NoteTab Standard (license costs £5)
the code you would want would be something like:
<h1 style="color: #000;">some text</h1>
|