The avatar sizes are set in the whovisitedthistopic.css ... Try using !important on all those sizes.
Code: Select all
.whovisitedthistopic-avatar {
width: 20px !important;
height: 20px !important;
}
.whovisitedthistopic-avatar img {
max-height: 20px !important;
max-width: 20px !important;
}
.whovisitedthistopic-avatar img:hover {
max-height:100px !important;
max-width:100px !important;
}
All the avatar sizes are set to 20px X 20px until you hover over one. Then it sizes to a max size of 100px X 100px.
Either your whovisitedthistopic.css isn't loading or...
You have some other css that's over riding these sizes. In this case using !important should fix that if the whovisitedthistopic.css is loading.