Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
759 views
in Themes by

how can I add text or new item  in the question sub menu:

 

Q2A version: 1.6.3

1 Answer

0 votes
by
 
Best answer

 I found the answer, add to qa-theme.php after "$this->nav_main_sub();" :

            if ($this->template=='questions'){$this->output('<div id="si-sub-qa">example</div>');}

and in qa-styles.css:

           #si-sub-qa {
               float: right;
              position: absolute;
              margin:-24px 150px 0px 0px;
              font-size: 11px;
           }

Play with "margin" to set the div to right positation !

...