Web page not loading external style sheet changes
Permalink1. Cleared my browser's cache
2. Cleared Concrete5's cache
3. Spammed f5 for hopeful refreshes
4. Tested within a different browser (IE and FireFox)
5. Used the CSS Reloader extension within Chrome to "force refresh" the the web page's style sheets
All the above failed to push any of the CSS changes that I made (refer to the attached photos for code visuals). The only action that does work is if I change the name of the style sheet. However, due to the fact that I do regular testing and CSS updates, I would prefer not to have to manually change the file name and the PHP call to that file each time I alter the code.
The page is still loading an older version of 'view.css'. It seems as though the style sheet is getting cached somewhere, but I'm not sure where. Does anyone have any ideas as to why this is occurring and/or any solutions that I could try?
As for 'Full Page Caching', I have already disabled all forms of caching through C5. Still no luck. :(
Is there a public URL I could have a look at?
Thanks, mhawke!
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getStyleSheet('view.css')?>" />
try to change this like:
<link rel="stylesheet" media="screen" type="text/css" href="<?php echo $this->getThemePath(); ?>/view.css" />
Though I'm not sure whether it is the problem but still sharing my opinion.
Rony
Also, you might have 'Full Page Caching' enabled in C5 but you sound like you've visited the C5 caching so I'm sure you would have noticed that.