Enceodemore Latest Questions

Anonymous
  • 0
Anonymous
  • 0

Link color using Hex color codes /* <body> <a href="http://example.com/" style="color:#FF0000;">Red Link</a> </body> */ Link color using HTML color names /* <body> <a href="http://example.com/" style="color:red;">Red Link</a> </body> */ Link color ...

Franchbabu
  • 0
  • 0

/* ----------------------------------------------------------- Add these code to functions.php ----------------------------------------------------------- /*Changes the main Login page url link*/ function wp_login_page_URL( $url ) { $url = home_url( '/' ); return $url; } add_filter( 'login_headerurl', 'wp_login_page_URL' ); ----------------------------------------------------------- /*Replaces the default WordPress Logo*/ function add_logo_Login_page() { echo '<style>.login h1 a { background-repeat: no-repeat; background-image: ...