Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
372 views
in Themes by
Q2A version: 1.8.4

2 Answers

0 votes
by

You may edit the qa-theme.php file inside of Snowflat folder.

Search for the public function head_css()

Then, you can add extra css.

Example:

$this->output('<link rel="stylesheet" href="https://mysite.com/qa-theme/Angel/css/my_custom_style.css">');

by
Can I add directly code it it ?
Example:
public function head_css(

$this->output('
MY PERSONAL CSS CODE
')
by
If your CSS is simple you can put them in <style> tags:

Example:
$this->output('<style>.qa-qa-count {text-align:center;color:#1234}</style>');
+1 vote
by

The easiest method is to use the option in Admin > Layout - “Custom HTML in <head> section of every page”

Add your CSS between <style> and </style> - make sure to get the tags correct otherwise you may mess up the page display.

...