I want to change the size of the user avatar images displayed on the single question-answer page. Can that be accomplished? If yes, how? Thanks in advance!
To change the avatar size display in the single question-answer page, follow the instruction below:
Firstly, follow the jetpack’s guideline in the Blog article on how to use Edit CSS here. http://designwall.com/blog/using-jetpack-custom-css-for-your-wordpress-site/
Then add the code to the Edit Css.
.dwqa-container .dwqa-single-question .dwqa-author .avatar { height: 50px; left: 7px; width: 50px; }
Hope this helps !
Thanks!
What about the comment avatar size? Mine seem to be oversized
You can open the comments.php file in the folder path "plugins -> dw-question -> answer -> inc -> templates -> default". Find the line 36.
See the screenshot: http://prntscr.com/6ymmct
Then use the following code to style for comment avatar.
.dwqa-single-question .dwqa-comment-form .avatar {
top: 15px;
left: 20px;
....
}
Hope this helps !
Please login or Register to submit your answer