bootswatch - label tag

0
I implemented a bootswatch theme in my app, added a new class called blabel to theme.css and then assigned it as the class property. I tried adding it to the table class property as well as the textbox class property but it doesn't seem to take. If I inspect the element I see the <label> tag around the item in question. If I change the html tag to <blabel> I see it uses my new class, but I can't figure out how to make this change in the code. Any help would be much appreciated. Thanks, Tracy
asked
1 answers
0

For classes assigned here:

alt text

or here

alt text

something like this should work

.blabel,
.blabel > input, {
 color:red;
}
answered