Hide ACDC footer frame via CSS to avoid empty space

It seems like this iframe (added when ACDC is enabled) can result in some empty space being shown because of some inherited `body` CSS about fonts/text. So hiding it via `display: none`, I think it will not cause any issues, because this iframe is not supposed to be visible anyway (`width`, `height` are set to `0`).
This commit is contained in:
Alex P 2023-08-22 10:50:58 +03:00
parent 81730a15b1
commit a866fd355b
No known key found for this signature in database
GPG key ID: 54487A734A204D71

View file

@ -15,3 +15,7 @@
.ppcp-dcc-order-button {
float: right;
}
iframe[id^="hosted-fields-tokenization-frame_"] {
display: none;
}