MyBB Community Forums

Full Version: Square-theme No Logo?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The forum logo is not appearing at the top.. any ideas why and how to fix it??
Make sure the logo is uploaded to the images directory, and that you specified the logo in

ACP > Themes > Square
I did both of those Sad

Not even the one that came with the theme is showing up for some reason..
(2015-04-28, 07:03 PM)Robmeister89 Wrote: [ -> ]I did both of those Sad

Not even the one that came with the theme is showing up for some reason..

Post your header template here.
<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="fa fa-cube fa-fw"></i></div> {$lang->xstyled_logo}</div>
          	<div class="menu">
              	<ul>
                  	<li><a href="{$mybb->settings['bburl']}/index.php"><i class="fa fa-comments fa-2x"></i><br />{$lang->xstyled_index}</a></li>
                  	<li><a href="{$mybb->settings['bburl']}/search.php"><i class="fa fa-search fa-2x"></i><br />{$lang->xstyled_search}</a></li>
                  	<li><a href="{$mybb->settings['bburl']}/memberlist.php"><i class="fa fa-users fa-2x"></i><br />{$lang->xstyled_members}</a></li>
                  	<li><a href="{$mybb->settings['bburl']}/calendar.php"><i class="fa fa-calendar-o fa-2x"></i><br />{$lang->xstyled_calendar}</a></li>
                	<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>
              	</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 Square Theme!</li>
							<li class="quotes">The 2019 Off-Season is set to begin later this evening or tomorrow..</li>
							<li class="quotes">The un-official RFA list will be posted soon.</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 />
Make sure you have installed the plugin that comes with the theme, and activated it.
Ah.. good catch..

However.. only the "Square" word pops up.. not the board logo I posted..

So I just copied my header logo from another theme's template..

How can I center everything (the logo and menu items)?
Thats because I don't use logo, I use text.

Edit the header template, in this section:

<div class="wrapper">
 <div class="logo"><div class="logo2"><i class="fa fa-cube fa-fw"></i></div> {$lang->xstyled_logo}</div>

Change to this:

 <div class="logo"><img src="images/square/logo.png" alt="My logo" /></div>

Greetings.
(2015-04-29, 12:20 AM)eNvy Wrote: [ -> ]Thats because I don't use logo, I use text.

Edit the header template, in this section:

<div class="wrapper">
 <div class="logo"><div class="logo2"><i class="fa fa-cube fa-fw"></i></div> {$lang->xstyled_logo}</div>

Change to this:

 <div class="logo"><img src="images/square/logo.png" alt="My logo" /></div>

Greetings.

I prefer text. Is there anyway to just change the text? Doing this (above) makes the menu go below the header box.. its not side-by-side with the logo.

Never mind.. I figured it out. Just deleted {$lang->xstyled_logo} and replaced it with the text I wanted..
You can always edit the file with the custom vars that comes with the plugin, there you have the "xstyled_logo" var.

Greetings.