MyBB Community Forums

Full Version: resize an avatar?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like to know which part of the template where I can resize of these issues (see below), it just suddenly appeared.

The avatar became bigger without no reason.

1. [Image: yYoWeTu.png]

[Image: CykTKBI.png]

2. Additional help:  I would like to to know which part of the template where I can edit the "last post" area. 
[Image: EadUJHX.png]

Happy Sunday~

Regards,
Hi,

the second problem:

Admin Control Panel -> Templates & Styles (Tab) -> Themes -> YOUR THEME -> global.css -> Advanced edit.

Search for:
.post .post_head {
    margin-bottom: 15px;
    font-size: 30px;
}


And replace it with:
.post .post_head {
    margin-bottom: 15px;
    font-size: 12px;
}

Or change the font size for whatever you want.



The first problem:

Checking it...

The first problem:

Same place as second problem (the global.css of your theme), add this at the end:

img.avatarep_img_contributor {
    height: 1em;
}
img.avatarep_img {
    height: 1em;
}

Change the value of 1em to whatever you want.