Quote:
Originally Posted by SuperDave71
I had a quick question. Is there a way we can put a small amount of space between the avatar and the PM text. It seems a BIT crowded to me. I love the mod and this is not a complaint, merely a suggestion.
Thank you so much in advance!
-Dave
|
Quick fix I did:
Find this in template pm_showconvo:
Code:
#pm_list div.fixed_width_avatar {
float:left;
}
Add a
padding: 6px; line under
float:left; like so:
Code:
#pm_list div.fixed_width_avatar {
float:left;
padding:6px;
}
Gives a pretty nice look with minimal change to the code.