MyBB Community Forums

Full Version: Sqaure Theme Need Help Urgent (Screenshot)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I am using this theme http://community.mybb.com/mods.php?action=view&pid=172

I have added an awards plugin and I want to add award page on the top beside search, members, calenders etc.

I tried to edit header template but I am unable to dot it, can you please help me out.

[Image: 5b55eb1daaaa284a73486275a60de563.png]


As you can see I am successful in the text, but I don't know how to put image above Awards. Please help me out.
Hi,

to add this menu point open Square template "header" and search for:
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><i class="fa fa-question-circle fa-2x"></i><br />{$lang->xstyled_help}</a></li>

replace that line with:
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><i class="fa fa-question-circle fa-2x"></i><br />{$lang->xstyled_help}</a></li>
<li><a href="LINK-TO-AWARDS-PAGE"><i class="fa fa-trophy fa-2x"></i><br />Awards</a></li>

save changes and open css file Square.css to edit in advanced mode

Search for:
.menu ul li {
  	list-style: none;
  	display: inline-block;
  	margin: 0 0 0 25px;
  	padding: 0;
  	text-align: center;
  	width: 60px;
  	height: 60px;
  	line-height: 30px;
}

Replace it with:
.menu ul li {
  	list-style: none;
  	display: inline-block;
  	margin: 0 0 0 15px;
  	padding: 0;
  	text-align: center;
  	width: 60px;
  	height: 60px;
  	line-height: 30px;
}

Save changes and try it.

[attachment=33885]