Quote:
Originally Posted by mitch84
Thank you but it changes nothing, the size of my avatar does not change. There is a variable of style also changed?
|
You need to add width, height to above class, and it should work.
This is the default code:
Code:
.postbitlegacy .userinfo .postuseravatar, .postbitlegacy .userinfo .postuseravatar img {
float: none;
text-align: center;
max-height: 100px;
max-width: 100px;
}
Make it:
Code:
.postbitlegacy .userinfo .postuseravatar, .postbitlegacy .userinfo .postuseravatar img {
height: 150px;
width: 150px;
float: none;
text-align: center;
}
So, what we have done is removed max height, width, and specified custom height, width.
You can replace 150px with your own value, and it should reflect changes.