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

 

I hid the sidebar in the question. There appears a gap on the right side. I want to fill there with words.

How can I expand the question and answer text field?

I would be happy if you can help me. Thanks.

Theme : Snow Extended

Q2A version: 1.7

1 Answer

0 votes
by
edited by
 
Best answer

I found the solution.

in qa-styles.css:

Question Textarea

.qa-q-view-main {
    float: left;
    width: 620px;
    padding-left: 10px;
}


Answer Textarea

.qa-a-item-main {
    float: left;
    width: 400px;
    display: inline-block;
    padding-left: 10px;
}

...