Page 1 of 1

[IMGs] max-size

Posted: Fri Apr 30, 2010 2:49 pm
by Mayhem
To avoid pictures being cut because of their too big size I did this on my clan's forum:
Admin panel -> styles -> Themes -> Edit -> find

Code: Select all

img {
-> add

Code: Select all

	max-height: 100%;	max-width: 100%;	min-height: 0px;	min-width: 0px;
And tada, pictures were automatically resized to fit the forum's posts.

Why not change it on L2j's forum too?

If you ever do it and don't see any changes, don't forget to clean your browser's cache.

Re: [IMGs] max-size

Posted: Fri Apr 30, 2010 7:20 pm
by ThePhoenixBird
thx, it will be included on the next forum maint, phpbb engine will be also upgraded and some new addons too.

Re: [IMGs] max-size

Posted: Fri Apr 30, 2010 8:48 pm
by Mayhem
You are welcome, kind sir.