for some reason I can't get this style sheet to work properly. when I put this style class in an attached style.css file it doesn't work. but if I add this style directly into the page it works fine.
This works fine:
but if I put the same code in a separate style.css file the 'form' and the 'form_normal' classes dont work at all :
the other classes like 'form_small' works but the first two don't. anyone have any idea what i'm doing wrong?
thanks
This works fine:
| Code: |
|
<style> .form { font-size:12px; font-weight:bold; font-style:normal; color:#000000; text-decoration:none; font-family:verdana; } </style> |
but if I put the same code in a separate style.css file the 'form' and the 'form_normal' classes dont work at all :
| Code: |
| /* CSS Document */
<!--Form css style classes--> .form { font-size:12px; font-weight:bold; font-style:normal; color:#000000; text-decoration:none; font-family:verdana; } .form_normal { font-size:12px; font-weight:normal; color:#000000; text-decoration:none; font-family:verdana; } .form_header { font-size:18px; font-style:normal; font-weight:bold; text-decoration:none; font-family:verdana; } .form_small { font-size:11px; font-style:normal; font-weight:normal; text-decoration:none; font-family:verdana; } .error { font-size:12px; font-weight:bold; color:#FF0000; } /* Horizontal Line: */ div.hr { color:#6b9689; height:2px; width:100%; display:inline } <!--End Style classes--> |
the other classes like 'form_small' works but the first two don't. anyone have any idea what i'm doing wrong?
thanks
