Forum breadcrumbs – You are here:Asgaros Support ForumSupportWordPress Logo Change
Please or Register to create posts and topics.

WordPress Logo Change

Hello everyone!

 

I need to know how I can change the WordPress logo that is seen on the registration area to a custom logo? Please see attached image.

Uploaded files:
  • WordPress-Logo-Change.JPG

Hi jpaul,

Simply add the following code to your themesĀ functions.phpfile:

function my_login_logo(){
   echo '<style type="text/css">#login h1 a { background: url('. get_bloginfo('template_directory') .'/images/logovh.png) no-repeat 0 0 !important; }</style>';
}
add_action('login_head', 'my_login_logo');

change picture

Thanks, Yworld!

Hi,

 

I have Asgaros installed on my wordpress.com site as a plugin. Is it possible to change logo via CSS?