changing social login buttons – UserPro Forums https://forum.userproplugin.com/forums/topic/changing-social-login-buttons/feed/ Sun, 28 Apr 2024 15:23:15 +0000 https://bbpress.org/?v=2.6.2 en-US https://forum.userproplugin.com/forums/topic/changing-social-login-buttons/#post-27899 <![CDATA[changing social login buttons]]> https://forum.userproplugin.com/forums/topic/changing-social-login-buttons/#post-27899 Fri, 14 Mar 2014 22:20:32 +0000 MikeJDS There was a topic posted a few days back that showed where to change the buttons for social login.
(PNG image files??)
I’ve searched the forum and can’t seem to find it.

Could someone point me to the thread or tell me how please?

Thanks

]]>
https://forum.userproplugin.com/forums/topic/changing-social-login-buttons/#post-27910 <![CDATA[Reply To: changing social login buttons]]> https://forum.userproplugin.com/forums/topic/changing-social-login-buttons/#post-27910 Fri, 14 Mar 2014 23:54:18 +0000 Ghost1227 There’s technically 2 ways. The easiest is to replace the relevant images. They are located in the userpro/img/social directory. However, this is also the wrong way. Replacing these images will result in your new images getting replaced on each upgrade… not fun. The right way to do it would be to upload your new images to somewhere other than the plugin folder (you can actually just use the media manager if you’d like), and override the images through CSS. Something like this would work fine:

a.userpro-social-facebook {
background-image: url('path/to/your/image.png') !important;
}

Obviously, the path should be replaced with your actual path, and the class name (that’s the userpro-social-facebook part) should be replaced with the appropriate class for the button in question.

]]>