Vik Sohal
asked 11 years ago

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!

1 Answers
DominicStaff
answered 11 years ago

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 !

Vik Sohal
replied 11 years ago

Thanks!

kristakahashi
replied 10 years ago
kristakahashi
replied 10 years ago

What about the comment avatar size? Mine seem to be oversized

dominic Staff
replied 10 years ago

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 !

Powered by DW Question & Answer Pro