MyBB Community Forums

Full Version: Stretching the logo (banner)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I was wondering if it is possible to stretch the gradient banner I made for my forums logo so that when people with bigger monitors then mine will see it stretched to the end of the forums list border and the others so it is matched up with the rest of the page. (what a sentence fragment! Smile)

Please help,

Thank you
change width of your logo from pixel format to percent format (in index templates)
img width="100%"
be beauty
imei Wrote:change width of your logo from pixel format to percent format (in index templates)
img width="100%"
be beauty

I can't find where to change it to percent please help.
MMouse Wrote:
imei Wrote:change width of your logo from pixel format to percent format (in index templates)
img width="100%"
be beauty

I can't find where to change it to percent please help.
aha ok~
you can find it here
admin cp> Templates> Modify / Delete> [your templates(perhaps default)] > expand > index> index>
here you can find logo html code and change it~
Or in the extra CSS of your theme you can add:

div.logo {
 background: red;
}

or for an image:
div.logo {
background: url(images/logo_bg.gif) repeat-x top left;
}

Chris