Wednesday 18 November 2015

QUICK FIX: HOW TO CHANGE LOGIN LOGO IN WORDPRESS 3.8 free

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 recentWordPress 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 (‘http://softstribe.com/wp-content/uploads/2013/12/Logo-softstribe.png’)
.login h1 a {
background-image: url('http://softstribe.com/wp-content/uploads/2013/12/Logo-softstribe.png');
background-image: none,url('http://softstribe.com/wp-content/uploads/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.

0 comments:

Post a Comment