Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
402 views
in Themes by

I would like to add border but did not find the tag that enables me to ad boder between posts. I want a post to have an individual border. Please refer image.

Q2A version: 1.7.4

1 Answer

+1 vote
by
  1. Go to "Admin" > "Layout"
  2. Input style below in "Custom HTML in <head> section of every page:"
<style>
.qa-q-list-item,
.qa-part-q-view,
.qa-a-list-item {
border: 1px solid #ccc;
}
</style>
by
.qa-q-list-item;
border: 1px solid #ccc;
in css section also worked for me. Anyways thanks.
...