MyBB Community Forums

Full Version: My forum logo overlaps
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to fix this because my forum logo overlaps.

[Image: overlap.jpg]
ACP>templates and style>templates>your theme>expand>header templates>header>edit>locate
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
something like this
make it like this
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" height="110" width="461" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
and edit the width&height to fit with your theme
basicly the only thing i did in here is adding the height="" width="" so
you can adjust the width&height without editing the banner in photoshop
regards,
Thanks a lot it works
glad that it worked for you let me know if you need any more hlep
I just figure it out when i arrived home and using the LCD monitor wide Screen this is the result

[Image: align.jpg]


But when im going to use the LCD which is non wide the alignment is exact

how im going to make it exact aligned to the container ?

i hope someone could help me
In the code below, change the width to your liking.

<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" height="110" width="461" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
The issue is that the container is set to a flexible width depending on the monitor. I would set the image width to 85%, which should fill 85 percent of the logo container.
(2012-08-21, 01:52 AM)Josh H. Wrote: [ -> ]The issue is that the container is set to a flexible width depending on the monitor. I would set the image width to 85%, which should fill 85 percent of the logo container.

I don't think that the OP is interesting in increasing his forums width.
ohh i got it thanks