As answered in PM.
You will need to check in the theme settings
AdminCP > Customization > Themes > Animate > Edit
Or this has to be changed in the html
Applied this for user solutions for others that might be asking.
AdminCP > Customization > Themes > Animate > Edit HTML / CSS > index > forumRow
Find
{{if $forum->description}}
<div class="ipsDataItem_meta ipsType_richText">{$forum->description|raw}</div>
{{endif}}
Move this code to where you want it, in this case find
<a href="{$forum->url()->setQueryString( 'passForm', '1' )}" data-ipsDialog data-ipsDialog-size='narrow' data-ipsDialog-title='{lang="forum_requires_password"}'>{$forum->_title}</a>
{{else}}
<a href="{$forum->url()}">{$forum->_title}</a>
{{endif}}
And move the first code below after {{endif}}
For the avatar thing it can be found here