MyBB Community Forums

Full Version: how do you remove mybb logo from the top
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to put my websites name on there, is there a way I can do that I am using the default mybb theme.
you can make a new logo image with the name of your forum & upload it to images folder of your MyBB files server

then change the logo image name at below setting of forum admin panel
forum admin panel >> Templates & Style >> themes >> default theme --> scroll down for Edit Theme Properties --> Board Logo
what do I put in the board logo the name of the file
^ if you upload your new logo image file to the images named folder of your MyBB files server then
you can put images/new-logo-filename for the board logo (replace new-logo-filename with actual file name)
(2017-04-30, 06:13 AM)mike2148 Wrote: [ -> ]I want to put my websites name on there, is there a way I can do that I am using the default mybb theme.

If you want a text logo, find in header template:

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

and replace it with:

<a title="{$mybb->settings['bbname']}" href="{$mybb->settings['bburl']}/index.php" style="text-decoration:none!important"><span class="logo-text">MyBB</span></a>

then add to global.css at the bottom:

.logo-text {font-family:"Helvetica Neue",Helvetica,Arial,sans-serif; color:blue; font-size:36px}

you can style it to suit.
(2017-04-30, 06:26 AM).m. Wrote: [ -> ]you can make a new logo image with the name of your forum & upload it to images folder of your MyBB files server

then change the logo image name at below setting of forum admin panel
forum admin panel >> Templates & Style >> themes >> default  theme --> scroll down for Edit Theme Properties --> Board Logo
how to upload the files to mybb images server???

(2017-04-30, 08:01 PM)Ashley1 Wrote: [ -> ]
(2017-04-30, 06:13 AM)mike2148 Wrote: [ -> ]I want to put my websites name on there, is there a way I can do that I am using the default mybb theme.

If you want a text logo, find in header template:

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

and replace it with:

<a title="{$mybb->settings['bbname']}" href="{$mybb->settings['bburl']}/index.php" style="text-decoration:none!important"><span class="logo-text">MyBB</span></a>

then add to global.css at the bottom:

.logo-text {font-family:"Helvetica Neue",Helvetica,Arial,sans-serif; color:blue; font-size:36px}

you can style it to suit.

what do you mean by then add to global.css at the bottom:????