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

1 Answer

0 votes
by

Do you mean outside q2a website ?

You can try html:

<div class="qa-ask-box" style="-webkit-user-select: auto;">
    <form method="post" action="http://www.SITE.COM/ask" style="-webkit-user-select: auto;">
        <table class="qa-form-tall-table" style="width: 100%; -webkit-user-select: auto;">
            <tbody style="-webkit-user-select: auto;"><tr style="vertical-align: middle; -webkit-user-select: auto;">
                <td class="qa-form-tall-label" style="padding: 8px 8px 0px; white-space: nowrap; -webkit-user-select: auto;" width="1">
                    Ask:
                </td>
            </tr>
            <tr style="-webkit-user-select: auto;">
                <td class="qa-form-tall-data" style="padding: 8px; -webkit-user-select: auto;" width="*">
                    <input name="title" type="text" class="qa-form-tall-text" style="width: 95%; -webkit-user-select: auto;">
                </td>
            </tr>
        </tbody></table>
        <input type="hidden" name="doask1" value="1" style="-webkit-user-select: auto;">
    </form>
</div>

Not sure if it would work, i hope i'm pointing to right direction.

...