Looking to Keep Only the Image Visible Within a Label
.payment_method_vipps label :not(img){
display: none!important;
}
<li class="wc_payment_method payment_method_vipps">
<input id="payment_method_vipps" type="radio" class="input-radio" name="payment_method" value="vipps" data-order_button_text="Betal med Vipps">
<label for="payment_method_vipps">
vipps
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/CSS3_logo_and_wordmark.svg/1200px-CSS3_logo_and_wordmark.svg.png" alt="Vipps" style="width: 100px; height: auto;">
</label>
<div class="payment_box payment_method_vipps" style="display: block;">
</div>
</li>
I've experimented with the :not selector but it's either hiding everything or nothing. Appreciate any assistance on resolving this issue. Thank you for your time.