MyBB Community Forums

Full Version: Change logo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I change the MyBB logo (nice as it is) to our own logo?
I am a real newbie at bulletin boarding Confused , but have some experience with HTML and managing websites.
The current one is located in the ./images/ folder, you can either upload one with the same name and file extension and it'll change, or can upload one with a different extension and change the path in your theme settings by going to ACP > Templates & Themes, editing your theme and changing the logo setting.
Thanks! That was fast!
GG
This is what I did, in this post.  It changed the logo.

#11



(2016-07-03, 07:13 AM)nuraman00 Wrote: [ -> ]Ok, this is what I did.  I'm trying the picture of the shirts on chairs as a logo, instead of a background image.


global.css:

#logo {
    /*background: #fff;*/
    padding: 10px 0;
    border-bottom: 1px solid #263c30;
        background-size: 100% 100%;
        background: url(images/lunarYearShirt.jpg) center fixed;
        background-repeat: repeat;
}


template header:

 <a href="{$mybb->settings['bburl']}/index.php"><img src="images/lunarYearShirt.jpg" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>




Is this the best way to make the logo stretch, with these two changes?  Do I have to do it in both places?

Also, I tried changing the background size, from 100% to 200%, but nothing happened.