MyBB Community Forums

Full Version: Logo instead of Text
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello i am using square theme. I am trying to remove the text from the header " Square " and  want to use a logo at this place. here is codes how i can?

<div class="scrolltotop"><i class="fa fa-caret-up fa-2x"></i></div>

<div id="container">
	<div id="header">
		<div class="wrapper">
          	<div class="logo"><div class="logo2"><i class=""></i></div>Thugz VCMP </div>
          	<div class="menu">
              	<ul>
                  	<li><a href="{$mybb->settings['bburl']}/index.php"><i class="fa fa-comments fa-2x"></i><br />Forum</a></li>
                  	<li><a href="{$mybb->settings['bburl']}/search.php"><i class="fa fa-search fa-2x"></i><br />Search</a></li>
                  	<li><a href="{$mybb->settings['bburl']}/memberlist.php"><i class="fa fa-users fa-2x"></i><br />Members</a></li>
                  	<li><a href="{$mybb->settings['bburl']}/calendar.php"><i class="fa fa-calendar-o fa-2x"></i><br />Calendar</a></li>
                	<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><i class="fa fa-question-circle fa-2x"></i><br />Help</a></li>
              	</ul>
          	</div>
		</div>
	</div>
  
	<div id="panel">
  		<div class="wrapper">
			<div class="news">
				<div class="announcements"><i class="fa fa-microphone fa-2x"></i></div>
					<div class="automsj">
						<ul>
                          	<li class="quotes">Welcome to Vice Thugz Forum</li>
							<li class="quotes">This clan was founded by DemWafflez</li>
                          	<li class="quotes">Vice Thugz VCMP Clan.</li>
						</ul>
					</div>
			</div>
        	<div class="usersection">
				{$welcomeblock}
        	</div>
		</div>
	</div>
      
		<div id="content">
			<div class="wrapper">
              	<br />
              	<navigation>
				{$pm_notice}
				{$bannedwarning}
				{$bbclosedwarning}
				{$unreadreports}
				{$pending_joinrequests}
				{$awaitingusers}
				<br />
Replace this line

<div class="logo"><div class="logo2"><i class=""></i></div>Thugz VCMP </div>

With this
<div id="logo">
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
</div>