Trying to hide an element in the WooCommerce plugin for Wordpress. Basically it's on the check out page and it says "State" and I want to hide it because the drop down box already says "Select State." I open Firebug and saw that the text "State" is not part of a class or anything. It looks like this:
<label class="" for="billing_state">
State
<abbr class="required" title="required">*</abbr>
</label>
I tried adding this in my CSS but it didn't work
label [for="billing_state"]{
display: none;
}