Dear enfold team,
in somepages I need the label of checkbox in white because the background is dark.
I use contact form 7
<div class=”flex_column av_one_full”>
Während der Rundreise möchte ich auch
</div>
<div class=”flex_column av_one_half first”>
[checkbox radfahren-730 class:custom-checkbox use_label_element “Radfahren”]
</div>
<div class=”flex_column av_one_half” style=”margin-bottom: 15px;”>
[checkbox wandern-730 class:custom-checkbox use_label_element “wandern”]
</div>
So I have tried to add this CSS:
.custom-checkbox {
color:#fff;}
but it happens nothing. Could you please take a look?
Hey vnfan,
Please try the following in Quick CSS under Enfold–>General Styling:
.page-id-3786 .wpcf7-list-item-label {
color:white !important;
}
Regards,
Rikard
Hi Rikard,
thanks a lot. I want to custom some contact forms on a nother pages too. How should the CSS look liked?
.page-id-3786 .page-id-3353 .page-id-4686 .wpcf7-list-item-label {
color:white !important; }
–> ist that right?
Hi,
You have to separate the arguments with a comma, so something like this:
.page-id-4686 .wpcf7-list-item-label, .page-id-3786 .wpcf7-list-item-label, .page-id-3353 .wpcf7-list-item-label {
color:white !important;
}
Regards,
Rikard
Wow. Thanks