MyBB Community Forums

Full Version: Logo Not Clickable
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://thetechregion.com/

the logo is not clickable in most places, except the bottom left. Why is this?
Well... you use a custom theme "Dojo Blue".

Width of your logo image (http://i46.tinypic.com/2eg761v.png) is 700px instead 245px and width of your banner image (http://i46.tinypic.com/2h81vsl.jpg) is 350px instead 735px.
--------------------------------------
You can try this: in AdminCP->Templates & Style->Themes, click on Dojo Blue (style) -> global.css -> click Advanced Mode -> find and replace:

#dojo-logo {
	float:left;
	width:245px;
	margin:0;
	padding:20px 0 0 0;
}

#dojo-banner {
	float:left;
	text-align:right;
	width:735px;
	margin:0;
	padding:0;
}
with:
#dojo-logo {
	float:left;
	width:700px;
	margin:0;
	padding:20px 0 0 0;
}

#dojo-banner {
	float:left;
	text-align:right;
	width:350px;
	margin:0;
	padding:0;
}

And... I don't understand why #dojo-banner is float:left ! I think will be better float:right because banner image in your page is this: http://i46.tinypic.com/2h81vsl.jpg

Like this:
#dojo-banner {
    float:right;
    text-align:right;
    width:350px;
    margin:0;
    padding:0;
} 

OK. Now I see...
You have end tag for element "a" which is not open in your header template.

Try this: in AdminCP->Templates & Style->Templates, click on Dojo Blue Templates -> click Header Templates -> click on header -> find and replace:
<li><a href="http://thetechregion.com/showteam.php">Forum Team</a></li>
</a>
</ul>
with
<li><a href="http://thetechregion.com/showteam.php">Forum Team</a></li>
</ul>


You have too many errors in your theme.
Check this and close all "img" self-close tags, please !
http://validator.w3.org/check?uri=http%3...p=0#result

For example:
<img src="http://i46.tinypic.com/2h81vsl.jpg">
must to be replaced with
<img src="http://i46.tinypic.com/2h81vsl.jpg" />