Quick Fix: How to Change Login Logo in WordPress 3.8

December 22, 2013

Well, it’s not about changing the login logo after all we have already written an article about changing WordPress login logo. But it’s about the size of login logo in WordPress 3.8 which is just got smaller after this recent WordPress official update.

And if you’ve just updated the WordPress 3.8, then you probably have noticed the change of logo size on the login of your WordPress blog. So, in order to keep using the old custom login logo then just follow this quick solution:

 

For me:

I went through wp-admin/css/wp-admin.min.css that I change .SVG with the LOGO image URL:

(..images/wordpress-logo.svg) to (‘/images/wp-content/2013/12/Logo-softstribe.png’)

.login h1 a {
background-image: url('/images/wp-content/2013/12/Logo-softstribe.png');
background-image: none,url('/images/wp-content/2013/12/Logo-softstribe.png');
background-size: 370px 80px;
background-position: center top;
background-repeat: no-repeat;
color: #999;
height: 80px;
font-size: 20px;
font-weight: 400;
line-height: 1.3em;
margin: 0 auto 28px -30px;
padding: 0;
text-decoration: none;
width: 368px;
text-indent: -9999px;
outline: 0;
overflow: hidden;
display: block;
}

DONE.

Muhammad Dilawar
Muhammad Dilawar
Muhammad Dilawar is a WordPress developer and technical SEO specialist with over 12 years of experience building, optimizing, and maintaining websites. He specializes in WordPress, WooCommerce, server optimization, DNS, Cloudflare, website security, and performance improvements. Through Softstribe, he shares practical guides, tutorials, and industry insights based on real-world experience helping businesses grow their online presence.
More from Muhammad Dilawar