MyBB Community Forums

Full Version: Restrict Sidebar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hey, I have sidebars in my every page.in every section,post,thread.
I want to restrict it only for the Homepage.
what can I do for that????

my site http://banglapdf.com


by the way, my sidebar was came with my templates. I didn't apply any HTML code to do that.so plz some1 explain step by step.
Thanks
Your site pointing me to 404
(2011-05-01, 06:32 PM)Yaldaram Wrote: [ -> ]Your site pointing me to 404


why???? I checked it!! it is alright Bro!!!
The easiest is to copy the CSS and HTML and make a custom page.
no ans from Yaldaram????
First of all its a wrong forum, it should be in here: http://community.mybb.com/forum-10.html

Secondly, Replace all code of your header template with the following;

<div id="navigation">
	<navigation>
</div>
<a id="top"></a>
<div id="header">
	<div class="wrap">
		<ul class="menu">
		<li><a href="{$mybb->settings['bburl']}/">Home</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>
		</ul>
		<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>
</div>
<div id="container">
	<div id="content">
		{$pm_notice}
		{$bannedwarning}
		{$bbclosedwarning}
		{$unreadreports}
		{$pending_joinrequests}
</div></div>

Now you've to edit your index template, Replacing {$forums} variable with the side bar code, like this;

{$forums}
	<div id="sidebar">
		{$welcomeblock}
		<div class="adverts">
			<a href="#"><img src="http://s3.buysellads.com/1236061/7115-1253225834.gif" class="advert" alt="" /></a>
			<a href="#"><img src="http://s3.buysellads.com/1236061/7115-1253225834.gif" class="advert" alt="" /></a>
			<a href="#"><img src="http://s3.buysellads.com/1236061/7115-1253225834.gif" class="advert" alt="" /></a>
			<a href="#"><img src="http://s3.buysellads.com/1236061/7115-1253225834.gif" class="advert" alt="" /></a>
		</div>
		<div class="sidenav navtitle">
			Notices
		</div>
		<div class="trow1">
			<img align="left" src="{$mybb->settings['bburl']}/{$theme['imgdir']}/note.png" alt="" />
			<a href="#"><strong>Lorem ipsum</strong></a><br />Lorem ipsum dolor sit amet, consectetur
		</div>
		<div class="trow1">
			<img align="left" src="{$mybb->settings['bburl']}/{$theme['imgdir']}/note.png" alt="" />
			<a href="#"><strong>Lorem ipsum</strong></a><br />Lorem ipsum dolor sit amet, consectetur
		</div>
		<div class="trow1">
			<img align="left" src="{$mybb->settings['bburl']}/{$theme['imgdir']}/note.png" alt="" />
			<a href="#"><strong>Lorem ipsum</strong></a><br />Lorem ipsum dolor sit amet, consectetur
		</div>
		<div class="trow1">
			<img align="left" src="{$mybb->settings['bburl']}/{$theme['imgdir']}/note.png" alt="" />
			<a href="#"><strong>Lorem ipsum</strong></a><br />Lorem ipsum dolor sit amet, consectetur
		</div>
		<div class="adverts">
			<a href="#"><img src="http://s3.buysellads.com/1236061/7115-1253225834.gif" class="advert" alt="" /></a>
			<a href="#"><img src="http://s3.buysellads.com/1236061/7115-1253225834.gif" class="advert" alt="" /></a>
			<a href="#"><img src="http://s3.buysellads.com/1236061/7115-1253225834.gif" class="advert" alt="" /></a>
			<a href="#"><img src="http://s3.buysellads.com/1236061/7115-1253225834.gif" class="advert" alt="" /></a>
		</div>
	</div>