Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Contributor Paolo

    (@paoltaia)

    Hi,

    you can do that with CSS. You iwll need to add it to Appearance > Customize > Custom CSS.

    This for example, will add the logo of our GetPaid plugin to both modals:

    h5.modal-title::before {
        background-image: url(https://wpgetpaid.com/wp-content/themes/ayetheme-new/assets/img/gp/getpaid-logo.png);
        width: 155px;
        height: 37px;
        display: block;
        float: left;
        margin: 0 20px 0 0;
    }

    Things you will need to change are:
    the URL of the image that you want to show

    the width and height of the image and the margin in case 20px is too much or not enough space between the logo and the modal title.

    Let me know if that works for you.

    Thread Starter SplashMedia

    (@keith679)

    Hi @paoltaia

    thank you for the reply πŸ™‚

    Doesn’t seem to work ive tried customiser css and child theme style.css ?

    Plugin Contributor Paolo

    (@paoltaia)

    I’ve tested it before replying, and it works. The only way for me to tell you what you are not doing correctly would be to check your website. If you share a URL, I’ll let you know.

    Thanks,

    Thread Starter SplashMedia

    (@keith679)

    Plugin Contributor Paolo

    (@paoltaia)

    sorry my bad, I missed one line of CSS

    h5.modal-title::before {
        content:"";
        background-image: url(https://wpgetpaid.com/wp-content/themes/ayetheme-new/assets/img/gp/getpaid-logo.png);
        width: 155px;
        height: 37px;
        display: block;
        float: left;
        margin: 0 20px 0 0;
    }



    Thread Starter SplashMedia

    (@keith679)

    That seems to have done it, much appreciated my friend πŸ™‚

    ill go make a decent image now.

    πŸ‘πŸ»</img>

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Add logo to (lightbox) login and register form’ is closed to new replies.