MyBB Community Forums

Full Version: remove this
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello all,

lounching my new forum,powered by mybb

how to remove this shown in pic.


[Image: e67f47.jpg]


m using mobileworld theme,attached.

thanks
Mobile World Templates --> Header Templates --> header

find AND remove below code
<div id="categories_links">
<div class="navcontainer">
					<ul id="nav">
	<li><a href="#">Category 1</a>
	<li><a href="#">Category 2</a>	
<li><a href="#">Category 3</a>
<li><a href="#">Category 4</a>
	<li><a href="#">Category 5</a>	
<li><a href="#">Category 6</a>
<li><a href="#">Category 7</a>
	<li><a href="#">Category 8</a>	
					</ul>
			</div>		
				</div>
thanks ranjani, work good.
how to fit theme in full page.
in its global.css find below code AND replace padding: 20px; with padding: 0; & replace width: 910px; with width: 100%;
#container {
	width: 910px;
	background: #fff;
	border: 1px solid #e4e4e4;
	color: #000000;
	margin: auto auto;
	padding: 20px;
	text-align: left; /* IE 5 fix */
}
ok works ,thanks a lot