PDA

View Full Version : CSS problems in Firefox



hydroplant
09 Nov 2010, 04:16 PM
I am a student studying web development. Right now I have only a basic knowledge of html and css. I have been playing with a web site idea, and I have a problem with my css in Firefox. The text formating is not being recognized, and the bulleted list is not formated correctly; the bullet colors and text formating are not being recognized. The mouse over styles for the links is working.

Here is what the css looks like:


<style type="text/css">
<!--
body { font-family: Verdana, Arial, Helvetica, sans-serif }

H5 { color: #00CC33 }

A:link {text-decoration: none}
a:hover { color: #00CC33; text-decoration: none; font-family: Comic Sans, Comic Sans MS, cursive; font-size: 18px }

ul {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
line-height: 2em;
font-weight: normal;
font-variant: normal;
text-transform: none;
color: #00CC33;
text-decoration: none;
text-indent: 5px;
}
-->
</style>