https://consguard.hk/metform-form/glow-up-form1/
網站是用 Wordpress elementor 作的,想隱藏 submit 之後的白色成功訊息有沒有辦法用CSS隱藏?
你是指這段嗎?
你可以把這段程式,data-show="1",改回data-show="0",他就隱藏了,真不行
<div class="mf-main-response-wrap mf-response-msg-wrap" data-show="1">
<div class="mf-response-msg">
<i class="mf-success-icon "></i
<p>testtesttesttesttesttesttesttest</p>
</div>
</div>
.mf-response-msg-wrap[data-show="1"]
無法的話,就下css
在mf-main-response-wrap 加上一個class name:mf-main-response-wrap-close[data-show="1"],至少不要髒了原本的UI CSS
<div class="mf-main-response-wrap mf-response-msg-wrap mf-main-response-wrap-close[data-show="1"]" data-show="1">
<div class="mf-response-msg">
<i class="mf-success-icon "></i
<p>testtesttesttesttesttesttesttest</p>
</div>
</div>
.mf-main-response-wrap-close[data-show="1"]{
display:none;}
以上可參考~或許也有更好的方式!XD((弱弱