Looking to conceal a label using CSS
<p class="half_form ">
<label for="property_bathrooms">Bathrooms (*only numbers)</label>
<input type="text" id="property_bathrooms" size="40" class="form-control" name="property_bathrooms" value="0"></p>
I have attempted the following:
label [for="property_bathrooms"]
{
display:none;
}
While this solution has worked for others, it does not seem to be effective in my case. Any assistance would be greatly appreciated.