Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
328 views
in Q2A Core by
I want to make it white with no border so that I can put an Amazon Affiliate Wedget in it and it will look nice.

1 Answer

0 votes
by

It is the .qa-sidebar class in the CSS (qa-theme/yourtheme/qa-styles.css). Change it to something like this:

 

.qa-sidebar {
  padding: 12px;
  font-size: 14px;
  background: #fff;
  border: 0;
  margin: 24px 0;
}
...