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.
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,
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;
}
That seems to have done it, much appreciated my friend π
ill go make a decent image now.
ππ»</img>