MyBB Community Forums

Full Version: Moving a logo in a Theme?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ok, I have searched and I can't seem to pull up what I need to figure out, so I apologize if this has been talked about already. I am not that familiar with PHP, so be gentle. The site is www.hamtrucker.com and I have uploaded and installed a theme, but when I ad my own logo (renamed it an over wrote the one that the theme came with to use my logo in its place), it is still to the left which puts it under the search tool which is built into the theme. I need to align it to the right. I am not sure were to put the align at. I have found the header template, but when I add the align right to the first line, it only stretches the search box, not my logo. As a matter of fact, I can't seem to find any mention of my logo in the code, which is header.jpg. Can someone please point out where "exactly" I can do this align?

<div id="header_af">
<div id="header_search">
<form method="post" action="search.php">
<input type="hidden" name="action" value="do_search" />
<input name="keywords" type="text" class="header_searchfield" value="Search items" size="20" maxlength="250"/>
<input type="submit" class="header_searchbutton" name="submit" value="Go!" />
</form>
</div>
</div>

<div id="navi_af">
				<ul>

					<li><a href="{$mybb->settings['bburl']}/index.php">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>

<div id="wrapper_af">
<div id="panel_af">{$welcomeblock}</div>
<div id="news_af"><img src="images/artisticfreedom_images/newspaper.gif"></img>
<font style="font-size: 14px; font-weight: bold;">News!</font><br />Welcome to Hamtrucker.com - Revised! Hope you like the new look. Things may look funny from time to time until its setup properly. Please inform one of the moderators or leave us a post in Feedback if something is not working right.
</div>
<div class="clear_af"></div>
</div>

<div id="content_af">
			<hr class="hidden" />


		<hr class="hidden" />
		<br class="clear" />
		<div id="content">
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
			<navigation>
			<br />




OK, I figured out how to fix it by moving the search float over to the left, but I would still love to know how to move the .jpg header. Driving me nuts.