I'm wondering if anyone can help me modify the Requirements function to allow the placement of CSS files before the closing body tag. I know there's an option to do this for Javascript files, so I'm hoping extending this to CSS files shouldn't be too tricky.
"Why", you might ask? Well if you're interested here's why: https://www.youtube.com/watch?v=YV1nKLWoARQ
Suffice to say it's for performance reasons - you should only load CRITICAL assets in the head (preferably inline to reduce HTTP requests). All other assets should be loaded asynchronously or at the foot of the page.