MyBB Community Forums

Full Version: One last thing! Mybb Avatar Box
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
On the box to the right
http://sintation.com/
http://gyazo.com/dbe8ab7cae8056855b0f24214191bd6b.png

How would I make the avatar shrinked down to 75x75. Right now it fits because the max avatar size is 75x75, but I want it 100x100. Although, if I do that it will be to big for that box, so therefore I would like to make the box adjust automatically. Help?

Current code I BELIEVE

            </div>

            <div class="tpanel2" >
              <div class="avatar2">
                 <a href="{$mybb->settings['bburl']}/member.php?action=profile&uid={$mybb->user['uid']}" ><img src="{$mybb->user['avatar']}"  alt="Your Avatar" title="Your Avatar" /></a>
             </div>
your forum's active theme has below style property and it controls the size of avatar at posts.
.pbavatar img {width: 75px;}


if required, you can change it like below
.pbavatar img {max-width: 75px; height: auto;}
(2013-10-06, 08:27 AM).m. Wrote: [ -> ]your forum's active theme has below style property and it controls the size of avatar at posts.
.pbavatar img {width: 75px;}


if required, you can change it like below
.pbavatar img {max-width: 75px; height: auto;}

Where would I change it to this?
^ admin panel >> themes >> sidereel theme >> global.css >> Edit Stylesheet: Advanced Mode (tab)
(2013-10-06, 08:34 AM).m. Wrote: [ -> ]^ admin panel >> themes >> sidereel theme >> global.css >> Edit Stylesheet: Advanced Mode (tab)

Alright, well I will do that when my stuff stops acting up.

My domain randomly became unparked.