MyBB Community Forums

Full Version: Non-Image "Logo"?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've been making changes to speed up my site. I've been advised to "optimize images," which I am undertaking.

But my biggest image is the forum logo at the top of my site -- and although it is a .jpg, it is all text. Seems wasteful.

Is there a way to not use any type of image at all up there and replace it with actual text only? And if so, how / where would I style that text (font, size, color)?

Any help would be greatly appreciated!

Thanks!
Search the net for a lossless compression tool, then compress your logo image with this tool. The other aspect of optimising images is to set actual width and height attributes on the <img> tag
Yes you can just use regular HTML and style it with CSS.
Thanks very much, Wage - that is what I was hoping to hear. I think I can handle the CSS, but can you please save me same time and point me to exactly where it goes? I've never fiddled with the code on MyBB (yet!). I assume I'm not just looking for <h1>?

Thanks again!

Ok, from viewing the "page source" it looks like I want to style the <title>. Does that sound right? Can somebody please point me to where I put the code?

Thanks!
ACP  --  Template Sets » Default Templates » Header templates » header

Line 6

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

Replace with:
Quote:<a href="{$mybb->settings['bburl']}/index.php"><div class="wlogo">YOUR TEXT HERE</div></a>

Style using CSS under class .wlogo.