MyBB Community Forums

Full Version: location board logo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Where can I change the location of the board logo in flatty theme.
I looked around in the header template from flatty and in global css and i can only find #logo (and that is the banner on the top).
For the board logo I find no padding. InĀ https://www.ikf-forum.eu/comeback/ it is the round button in the header. The new location must be on the left and top with a padding from 15px
How to change the logo is in the docs that come with the install package.
Nope, only how to add it, not how to change the location.
(2019-11-13, 06:06 PM)spinning Wrote: [ -> ]Nope, only how to add it, not how to change the location.

It centers like that because class wrapper has margin set to auto - check global.css approx line 51.

In header template of Flatty theme, try replacing:

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

with:

		
			<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" title="{$mybb->settings['bbname']}" /></a>
		
Thanks and how to change the margin from the top?
You can do it like this also in header template:

<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" title="{$mybb->settings['bbname']}" style="margin-top: 16px" /></a>
Thanks for solving it.