• Hello guys!

    First of all thank you for the great plugin you have coded! It’s awesome!

    I use the latest WP version, latest Version 2.5.3.3 of your plugin and latest Version 7.9.4 of Super Socializer.

    Super Socializer adds social login to the standard WP-login page. Therefore, also admin-custom-login displays the social login icons and it works perfectly. The only thing: there is a red-style coming from admin-custom-login. Where can we change that?

    Thanks a log!!!!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author weblizar

    (@weblizar)

    Hi @freunde123,

    Do you know some coding knowledge?

    You need to update a file code, it’s simple and easy.

    This red-style CSS is coming from “demo.css” file you need to find below code and update the following CSS code. This file available into the plugin directory.
    File Path: your-wordpress\wp-content\plugins\admin-custom-login\css\demo.css

    
    body{
    	font-family: Constantia, Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif;
    	background: #000;
    	font-weight: 400;
    	font-size: 15px;
    	color: #aa3e03;
    	overflow-y: scroll;
    	overflow-x: hidden;
    }
    

    You need to update the color code of CSS color: #aa3e03; to color: #ffffff;:

    
    body{
    	font-family: Constantia, Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif;
    	background: #000;
    	font-weight: 400;
    	font-size: 15px;
    	color: #ffffff;
    	overflow-y: scroll;
    	overflow-x: hidden;
    }
    

    Hope this will fix.
    Thanks

    Plugin Author weblizar

    (@weblizar)

    Another Simple Solution:

    Use the below CSS code into Custom CSS option of the plugin and save.

    
    body{
    	color: #ffffff !important;
    }
    

    If this solution does not work then use the first one.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change text color’ is closed to new replies.