Hi again,
Label won't appear in the classes list because it's not a custom class, but it's overriding default behavior of the <label> tag.
Basically, there are three types of selectors:
1: .MyClass
Starting with a dot, this selector allows you to create custom classes that can be used like this:
<a href="#" class="MyClass">
2: #MyId
Starting with an #, this selector is applied to an object on your page with an ID of MyId. IDs should be unique, so this can only refer to one object:
<a href="#" id="MyId">
3: h3 or a or label or h2 or td etc etc
These selectors override the default behavior of existing Html tags.
In your case, you were using label to override the tag <label>
So, you probably should rename Label to .Label. Then the class appears in the classes list and you can apply it to elements in your page.
If you want to know the nitty gritty of Css, check out this book:
http://www.wrox.com/WileyCDA/WroxTit...764576429.html
HtH,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.