MyBB Community Forums

Full Version: Move A to B
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Thank you very much.

I will admit though; that it kinda looks a bit odd now though. I guess maybe what I'm after is something similar to the one used on this board but obviously without the uppermost legend e.g Home, About, Features...etc
I see, try this then:

<!-- begin wrapper -->
<div id="wrapper">

<!-- begin logo -->
<div id="logo">
<a href="{$mybb->settings['bburl']}/"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" class="logo" /></a>
<a name="top" id="top"></a>
</div>
<!-- end logo -->
<br/>
<div class="clear"></div>
<!-- begin navbar -->
<div id="navbar">
<ul id="nav">
<li><a href="{$mybb->settings['bburl']}/index.php" class="current">Forum Home</a></li>
<li><a href="{$mybb->settings['bburl']}/search.php">Search</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php">Member List</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help">Help</a></li>
<li><a href="{$mybb->settings['contactlink']}">Contact Us</a></li>
</ul>
</div>
<!-- end navbar -->

<!-- begin content wrap -->
<div id="contentwrap">
<div id="container">
<hr class="hidden" />
<br class="clear" />
<div id="panelcontent">{$welcomeblock}</div>
<div id="content">
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
<navigation>
<br />

Also, go to Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode and find:

#panelcontent {
	color: #a2a2a2;
	line-height: 17px;
	height: 87px;
	font-size: 11px;
	margin-top: 0;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 15px;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 10px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #000000;
	border-left-color: #000000;
	background-color: #0d0d0d;
	background-image: url(../../../images/blackevo4-space/panelbg.png);
	background-repeat: repeat-x;
	background-position: bottom;
}

Replace with:

#panelcontent {
	color: #a2a2a2;
	line-height: 17px;
	font-size: 11px;
	margin-top: 0;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 15px;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 10px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #000000;
	border-left-color: #000000;
	background-color: #0d0d0d;
	background-image: url(../../../images/blackevo4-space/panelbg.png);
	background-repeat: repeat-x;
	background-position: bottom;
}
Much better. Two more things though (don't hurt me lol)

I would like it so that the container is the original width because currently it stretches across the page and I liked it so that the buildings in the banner were on show.

The banner space has completed vanished as well...

Additionally, I'd need to get rid of the "Stained" link as it serves no purpose where it is beneath the control panels.

Guess, that was three things.
Pages: 1 2