MyBB Community Forums

Full Version: how to create auto re size logo for this theme.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://i.imgur.com/Wd04Y.png

my logo is not varing with screen resolution, how can i overcome this. I want to create auto re size logo.

please help.
I already told you how to do: http://yaldaram.com/thread-4935-post-215...l#pid21527

You can't re-size "image" according to screens resolution. You've to shrink the size of container so it fits according to the logo's width.
Another option is a background that blends in with the edges of the logo repeating on the x axis(must be at least the same height as the logo.
Just add this to your CSS:

#logo img {
     width: 100%;
}

Or if you don't want the height to change as well, add this instead:

#logo img {
     height: 151px;
     width: 100%;
}