MyBB Community Forums

Full Version: How to remove myBB admin logo and put some custom logo over their
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi experts!

How i can remove myBB admin login page logo and put some custom logo, i also attach admin panel initial login screen picture please review it and let me know how i can do it...


thanks
Why not simple replacing the logo.png ?
You can find this file in "images".
(2015-05-03, 01:47 PM)skrilaxrev Wrote: [ -> ]Why not simple replacing the logo.png ?
You can find this file in "images".

I do it, it change my theme logo but don't change admin login screen logo dear 
I am sorry, my answer is just wrong.

I take a look at the html code of the browser and was able to see this:
		<div id="logo">
			<h1><a href="../" title="Zurück zum Forum"><span class="invisible">MyBB-ACP</span></a></h1>

		</div>

Because the class "invisible" can not be found in the main style css, I found it in mybb/admin/styles/default
There is the file login.css, where you could change this h1 headline.

#logo h1 {
	height: 82px;
	background: transparent url(images/login_logo.png) bottom left no-repeat;
	margin: 10px;
	padding: 0;
}

Also you could just overwrite in this case the file login_logo.png in mybb/admin/styles/default/images

Please rate my answer, if it was helpful - so others can see, I am not only here for taking.^^