• So I solved the logo issue (not displaying correctly) with some custom CSS:

    div {
    background: url(https://example.jpg);
    background-size: 449px 180px;
    background-repeat: no-repeat;
    }

    I hid the WP logo that still appears by uploading a white square to match the background in the custom logo area.

    However, this also displays the same logo in the Disclaimer field and I can’t remove or hide it here. Any ideas anyone?

    https://www.ads-software.com/plugins/register-plus-redux/

Viewing 1 replies (of 1 total)
  • Try something like background-position:

    body1 {
        background-image: url('smiley.gif');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center;
    }
    
    body2 {
        background-image: url('smiley.gif');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: 50px 100px;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Logo issue 90% resolved – help me resolve one last problem!’ is closed to new replies.