To change Login Popup title to custom Logo, like this.
#1. First, you need to install this code to Code Injection > Footer
#2. Use this code to top of Fooer code
<x-twc-calidc-style style="display : none;">
.twc-calidc h1 {
--height: 70px;
height: var( --height );
visibility: hidden;
}
.twc-calidc h1::before {
background-image: url(https://cdn.pixabay.com/photo/2025/08/09/18/23/knight-9765068_1280.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: contain;
content: "";
display: block;
height : var( --height );
visibility : visible;
}
</x-twc-calidc-style>
#3. You can change Logo url + Logo size here



