Ok so this should fix everything for you.
1) Fix for “Image going right hand side”
Look into this stylesheet: https://desenvolvendosaf.96.lt/wp-content/themes/Gameleon/css/style.min.css?ver=4.6.1
Look for this CSS code:
.bbp-reply-author a img {
display: block!important;
width: 45px!important;
height: 45px!important;
margin: 0 0 0 35px!important;
float: none!important;
}
update / replace the CSS block to this:
.bbp-reply-author a img {
display: block!important;
width: 45px!important;
height: 45px!important;
margin: 0 0 0 0px!important;
float: none!important;
}
2) Fix for “Name appearing on top of names”
Look into this stylesheet: https://desenvolvendosaf.96.lt/wp-content/themes/Gameleon/css/style.min.css?ver=4.6.1
Look for this:
.bbp-author-name {
float: left!important;
padding: 0 0 0 30px!important;
line-height:14px;
font-size: 13px!important;
}
Replace it with this:
.bbp-author-name {
float: left!important;
padding: 0 0 0 30px!important;
line-height: 150px;
font-size: 13px!important;
}
Now, look for this block that we updated before:
.bbp-author-role {
/* margin: -20px 0 0!important; */
padding: 0!important;
margin-top: 20px;
}
Replace it with this:
.bbp-author-role {
/* margin: -20px 0 0!important; */
padding: 0!important;
margin-top: -75px;
}
Now delete your browser history/cache/cookies and test everything by refreshing your webpage.
Everything should display correctly now.
-
This reply was modified 8 years, 3 months ago by
a2hostinglk.