Including .js file
Permalink
In my header the way it is including a .js file:
<script type="text/javascript" src="< ?php echo $this->getThemePath()?>/js/functions.js"></script>
But when i copy this then add my own file - i can no longer see the CONCRETE TOOLBAR at the top of the page - so im a sitting duck.
same thing happens if i add script tags and paste it all into the header
any help?
<script type="text/javascript" src="< ?php echo $this->getThemePath()?>/js/functions.js"></script>
But when i copy this then add my own file - i can no longer see the CONCRETE TOOLBAR at the top of the page - so im a sitting duck.
same thing happens if i add script tags and paste it all into the header
any help?

You have a space between "<" and "?php", which would cause all kinds of javascript errors. If you're still experiencing the problem after removing that space, it might be that your javascript file is causing some kind of conflict with the C5 code. Use Firebug (for firefox) or Web Inspector (for Chrome/Safari) to see what javascript errors you're getting.