Removing the white box around avatars!

Hello i want to remove the default white box from around my avatars, how can i do this.

As this is conflicting with transparent avatars which theme with the forum.

#510852

Easy fix,

Go into the CSS and replace the following

.avatar img {
border: 1px solid #d8d8d8;
margin: 0 auto 0 auto;
padding: 5px;
background: #ffffff;
}

with something like

.avatar img {
margin: 0 auto 0 auto;
}

#510853

Fixed, thanks again.

#510855