What do you mean with ‘misaligned’ ? Where do you want them ?
This will already get it away from the text:
img.avatar.avatar-14.photo {
margin-bottom: 0px !important;
}
PS. Next time please include the link to you site because for CSS we always need to see the site itself.
And
display:inline;
will show on 1 line… all depends what you want.
Pascal, thank you for helping me!
By misaligned I was meant that the avatars are not on the same line as the user name. Your code solves this issue:
img.avatar.avatar-14.photo {
margin-bottom: 0px !important;
display:inline;
}
There is a side-effect though: the avatar gets underlined if you use ‘display:inline;’. If there is a way to remove the underline? ‘text-decoration: none’ does not seems to work.
Here is a link to the test forum with your code applied: http://rugby-forum.ru/wp3/forums/forum/test-forum/
Thank you!
@valery-kondakoff
Use this CSS to remove the box shadow for links in bbPress.
#bbpress-forums a {
box-shadow: none;
}