Where do I change the font size of the question/answer text. It appears very small on my site, and I can’t seem to find it.
Also, in the text field of questions or answers, one break between paragraphs when submitting results in no break between paragraphs on submission (meanin all paragraphs are just jammed together). The only way to have a proper space between paragraphs is to have added two breaks on submission.
Check out the following page to see what the paragraphs are looking like:
Any ideas?
Hi Adam,
To edit font size and break spacing, you can add this code below to the stylesheet file of your theme:
.dwqa-container {font-size: 16px;}
.dwqa-container p {font-size: 16px;}
.dwqa-container br {line-height: 35px;}
Hope that helps!
I have the same problem. I added the code above. Then, I went to the answer and inserted the paragraph breaks. After saving the answer it looks ok. However, as soon as I click edit again, paragraphs are jammed together again.
Here how I added the code in my stylesheet file:
/* Comments */
.commentlist > li.comment {
background: none;
position: relative;
width: auto;
}
.commentlist .avatar {
height: 39px;
left: 2.2em;
top: 2.2em;
width: 39px;
}
.comments-area article header cite,
.comments-area article header time {
margin-left: 50px;
margin-left: 3.57142857rem;
}
.dwqa-container {
font-size: 16px;
}
.dwqa-container p {
font-size: 16px;
}
.dwqa-container br {
line-height: 35px;
}
}
Please login or Register to submit your answer