I have a fully updated wordpress site with some plugins that enqueue some styles, javascript files, etc. Wordpress writes these items out with single quotes which is screwing up how browsers interpret them.
For example, Chrome uses the items correctly as if they were in the head, but then moves them to the body tag, creating a gap at the top of the page (it inserts a string of spaces). IE9B does this too.
Frustrating to say the least - so I downloaded the html source code and ran it locally. It is fixed if I swap every single quote in the head tag to a double quote. So where do I change this in Wordpress?