MyBB Community Forums

Full Version: Logo is gone
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Well i was editing the CSS and i made sure to reset it since i didnt get the result i wanted and now my banner is gone but on my PSP i see it help...
~blake~
Your PSP would be caching it.

There are two things which could have gone wrong; the logo path in your theme settings. Or you've removed the logo from the templates.

If the second one is true then just check you've put this
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
into your header template.
I put the code in but it doesn't show a image just a transparent little box that if i click it goes to the homepage.
What is your logo path set to in your theme settings?
images/logo.png
<a href="{$mybb->settings['bburl']}/index.php"><img src="/images/logo.png" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
Still have the little transparent box.
Can you confirm that /images/logo.png exists?
In your CSS:
Find:

#logo {
	width: 305px;
	background-image: url(../../../images/ExtBlack/logo.png);
	background-repeat: no-repeat;
	position: absolute;
	top: 16px;
	height: 74px;
	left: 24px;
}

Replace it with:

#logo {
	width: 305px;
	background-image: url(/images/logo.png);
	background-repeat: no-repeat;
	position: absolute;
	top: 16px;
	height: 74px;
	left: 24px;
}

(2010-07-19, 06:39 PM)Polarbear541 Wrote: [ -> ]Can you confirm that /images/logo.png exists?

I doubt it. Sleepy
Upload your logo to 'images' folder, make sure it's renamed logo.png to work with the code I provided.
(2010-07-19, 06:39 PM)Polarbear541 Wrote: [ -> ]Can you confirm that /images/logo.png exists?
I uploaded it via FTP several times.

(2010-07-19, 06:42 PM)N1LOY Wrote: [ -> ]In your CSS:
Find:

#logo {
	width: 305px;
	background-image: url(../../../images/ExtBlack/logo.png);
	background-repeat: no-repeat;
	position: absolute;
	top: 16px;
	height: 74px;
	left: 24px;
}

Replace it with:

#logo {
	width: 305px;
	background-image: url(/images/logo.png);
	background-repeat: no-repeat;
	position: absolute;
	top: 16px;
	height: 74px;
	left: 24px;
}

(2010-07-19, 06:39 PM)Polarbear541 Wrote: [ -> ]Can you confirm that /images/logo.png exists?

I doubt it. Sleepy
Upload your logo to 'images' folder, make sure it's renamed logo.png to work with the code I provided.
No luck. I will uploaded it once again after my virus scan is over.
Pages: 1 2