Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
290 views
in Q2A Core by
Is it possible to put a q2a ask box at an external website?

I habe a q2a-website A and would like to put a ask box on website B to post questions at q2a-website A.
Q2A version: 1.8.5
by
It's just a HTML form. So long as you can create HTML content, everything is ok. You may need to adjust some CSS style attributes..

    <form method="post" action="https://www.yourq2awebsitea.com/ask?cat=">
        <table class="qa-form-tall-table" style="width:100%">
            <tr style="vertical-align:middle;">
                <td class="qa-form-tall-label" style="width: 1px; padding:8px; white-space:nowrap; text-align:right;">
                    Ask&nbsp;a&nbsp;question:
                </td>
                        <td class="qa-form-tall-data" style="padding:8px;">
                    <input name="title" type="text" class="qa-form-tall-text" style="width:95%;">
                </td>
            </tr>
        </table>
        <input type="hidden" name="doask1" value="1">
    </form>

1 Answer

0 votes
by
That's how it works for me 
yes
...