I don't know if that is even possible…
I have a div#branding
inside of my header. The header has multiple other elements inside.
I want all children of my header
to have a opacity of 0.3 but NOT the #branding div.
How can I achieve that?
I tried with the following piece, but that doesn't work.
$('header div:not(#branding)').css('opacity', '0.3');
Thank you for your help.