Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+5 votes
214 views
in Q2A Core by
Hi, How can I edit (ask a new question relating to this answer) button

I want to add label to it as a hint for visitors

1 Answer

+1 vote
by
selected by
 
Best answer

I think the best thing to do here is to apply the same style as the answer and comment button.

Based on previous posts, I know you are using the SnowFlat theme (and it makes sense because AFAIK it is one of the few themes which don't have texts in the buttons). So the next steps will apply for that specific theme.

 1. Edit file qa-theme/SnowFlat/qa-styles.css

 2. Add the following code at the end of it:

input.qa-form-light-button-follow {
    width: auto;
    padding: 0 10px 0 30px;
    background-position: 8px center;
    font-size: 13px;
    line-height: 32px;
    text-indent: 0;
}

 3. Edit this line to change the button text

by
+1
Thank you very much, you are the best
...