I find it quite difficult to modify things on the ask page.
In qa-theme-base.php there are nearly no ways to access the different parts of the /ask/ page.
In my recent case I want to add more HTML below "More information for the question".
Example of how I do it recenty in the qa-theme.php:
// ASK page
if($this->template=='ask' && isset($this->content['form']['fields']['title']['tags']))
{
// add placeholder to title field
$this->content['form']['fields']['title']['tags'] .= ' placeholder="Aufgabe in einem Satz schreiben"';
}
Thanks for any tip.
PS: I cannot target the different TDs separately. There are no IDs or CLASSes ... :/