Is there any way to write a CSS selector for this snippet, but without it applying to the <label> compoenent? So that I can alter the text in the div, but the label is good where it is.
<div id="edit-cc" class="form-item form-type-item">
<label class="field" for="edit-cc">cc </label>
guy@example.com, frank@example.com, inne@example.com, jan@example.com, karel@example.com
</div>
the best way is to enclose all email address in one element (probably an unordered list is the most suitable tag for this purpose) but if you cannot modify the code just apply your rules to the
div {}and then revert them ondiv label {}