Hi
I noticed that the filenames of the CSS files (in optimized mode) may change. For example this is from the source code of a page:
<link href="/t3-assets/css/css-c8fc0-80105.css" rel="stylesheet" type="text/css" />
<link href="/t3-assets/css/css-39c54-80107.css" rel="stylesheet" type="text/css" />
However the same website when moved to a subdomain produces different filenames:
<link href="/t3-assets/css/css-c8fc0-20058.css" rel="stylesheet" type="text/css" />
<link href="/t3-assets/css/css-39c54-20058.css" rel="stylesheet" type="text/css" />
Question 1:
Is there a way to keep this naming fixed?
Question 2:
I would like to move this code (along with the call to the .JS file) from the section to just above the . Is there a way to do this? The reason for this is to defer those files and speed up the loading of the page.
Yes, I know how to do it with JCHOptimize. But this method creates overhead. I prefer to do it manually and control exactly what I do.