Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
  • Register
Welcome to the Q&A for Question2Answer.

If you have questions about the platform, click here to ask and please use English.

If you just want to try Q2A, please use the demo, which also grants admin access.

Apr 29: Q2A 1.5.2

[answered] How to put dotted line (.......) between every answer ?

0 votes
At the moment multipe answers are not separated by anything between them on the page, which doesn't look visually elegant.

I want to separate every answer by a dotted line ...................

how do i do it ?
asked Apr 20, 2011 in Q2A Core by toktosunov
edited Apr 24, 2011 by toktosunov

1 Answer

+1 vote
 
Best answer

I would say the easiest way is to add a bottom border to the qa-a-list-item class in your CSS. You may need to change the padding too. For example you could change the style to:

.qa-a-list-item {
  margin-bottom: 20px;
  zoom: 1;
  padding-bottom: 21px;
  border-bottom: 1px dotted #999;
}

 

answered Apr 20, 2011 by DisgruntledGoat
thanks, only instead of "bottom", i used "top" otherwise it doesn't  put the line between the question and the first answer, other than that it works perfectly!