For the css file. Find this function in qa-theme-base.php
I never used this, but I am just assuming. Hopefully someone else let know :)
function css_name()
{
return 'qa-styles.css?'.QA_VERSION;
return 'prism.css?'.QA_VERSION;
}
This one for javascript
function body_script()
{
$this->output(
'<SCRIPT TYPE="text/javascript"><!--',
"var b=document.getElementsByTagName('body')[0];",
"b.className=b.className.replace('qa-body-js-off', 'qa-body-js-on');",
'//--></SCRIPT>',
'<script src="prism.js"></script>
'
);
}
And this done by using overriding those two functions in qa-theme.php and not qa-theme-base.php
Do not edit qa-theme-base.php