MyBB Community Forums

Full Version: Banner Issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Hey everyone,

I uploaded the banner to images/ins/logo.png and now it completely removed my banner. I replaced it with the root files and it never came back.

What am I doing wrong?

Link: http://advertisingcentral.org/
When you say "it" what are you referring to specifically? Please be more specific, you've referred to what seems like 3 different items as it? What are these items?
Alright, I'll explain from the beginning.

A friend of mine made me a logo, and I uploaded it into the images/ins directory. I then went and edited the global.css for the 2.0 inspired template. The banner appeared but gave my friend a 404 error. I logged back into my ftp client, and re-uploaded the original logo that came with this style and re-edited the global.css. Now, it's not appearing the banner at all.
Well, if you did this: simply replace the image but used the same filename (and it was near the same dimensions) and you get a 404 error. Then it's a more serious problem then anything that has to do with the image if displaying the image is strictly CSS/html based. If that then places the image via JavaScript or jquery with conditions then it could give you a problem. Buti doubt anyone would design a theme like that. Unless the theme designer used some alteration "security" with JavaScript. Again, doubtful. Now try my suggestion, if it still does not work... Then there's another problem. Check to make sure you didn't make a mistake editing you header template on accident (check to make sure HTML formatting is correct).
Sorry, I'm not quite understanding your post. The banner in the images/ins is logo.png (which is default), I edited the theme properties as you can see in the screenshot below. Then when I uploaded the new logo.png, it did not work as you can see.

[attachment=26935][attachment=26936]

http://advertisingcentral.org/images/ins/logo.png
Could you please paste the top of your header template so I can take a look at it?
(2012-07-27, 04:52 AM)WebDevandPhoto Wrote: [ -> ]Could you please paste the top of your header template so I can take a look at it?

<div id="header_main">
<div id="header_sub">
<hr class="hidden" />
			<div id="panel">
				{$welcomeblock}
			</div>
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
			<div class="menu">
				<ul>
					 <li><a href="{$mybb->settings['bburl']}/portal.php">Portal</a></li>
                                        <li><a href="{$mybb->settings['bburl']}">Forums</a></li>
                                        <li><a href="{$mybb->settings['bburl']}/search.php">{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}</a></li>
<li><a href="http://advertisingcentral.org/about.php">About Us</a></li>
<li><a href="http://advertisingcentral.org/contact.php">Contact Us</a></li>
<li><a href="http://advertisingcentral.org/misc.php?page=services">Services</a></li>
In your CSS you have this;

.logo {
	display: none;
	position: fixed;
	_position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	border: 1px solid #cecece;
	z-index: 1;
	
	width: 100%;
}

Remove display: none;
(2012-07-27, 05:06 AM)NJunkies Wrote: [ -> ]In your CSS you have this;

.logo {
	display: none;
	position: fixed;
	_position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	border: 1px solid #cecece;
	z-index: 1;
	
	width: 100%;
}

Remove display: none;

I edited the global.css and removed the display:none; as you said but it's still not appearing.

My current global.css file is:

.logo {
    position: fixed;
    _position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid #cecece;
    z-index: 1;
    
    width: 100%;
}
Note to self, don't try to help people on an slow garabage mobile phone like me... You could completely look over posts like I just did... Lol edited post. So hey it looks like Njunkies is getting you on the right track.
Pages: 1 2 3