The rwmb-label class is wrapping my custom_html and I cannot display:none the rwmb-label without my custom_html disappearing too. I have tried :not(TheClassesIAddedToTheHTML), adding !important etc. But cannot separate the two classes because of the wrapping. How do I fix this?
So to clarify without .rwmb-label label:not(.rwmb-custom_html-wrapper){
display: none;
} it shows both the rwmb-label and my custom_html field.
With .rwmb-label label:not(.rwmb-custom_html-wrapper) {
display: none;
} It shows neither.