Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
1.2k views
in Q2A Core by
I want to make the text of  'Send Feedback' (bottom right of Q2A pages) larger? I assume it's somewhere in the theme CSS but I can't pin it down.

I'm using snow theme on the 1.7 alpha 2 version.
Q2A version: 1.7 alpha 2

1 Answer

+1 vote
by

For Snow theme you will have to add this CSS to the end of your qa-style.css file:

a.qa-nav-footer-link {
    font-size: 120%;
}

Now, if you actually meant Snow Flat then you will have to add that CSS to the file css/snow-core.css, right before this line:

/*# sourceMappingURL=snow-core.css.map */

Of course, change the percentage to whatever you want.

By the way, alpha 2 does not exist :)

https://github.com/q2a/question2answer/blob/dev/qa-include/qa-base.php#L28

by
Excellent, Thank you pupi!
...