How To Reload A Theme During Development
Permalinkexample
#default.php
<?php
include( '/testing_directory/default.php' );
?>
don't use getThemePath() until you finished testing
example:
replace <link rel="stylesheet" href="<?php echo $this->getThemePath(); ?>/css/reset.css" />
with
<link rel="stylesheet" href="/testing_directory/css/reset.css" />
I didn't try this but i will right now :)
Did you delete them at that location or did you try to remove them elsewhere?
Other changes in your theme itself only become active if you uninstall the theme and reinstall it for as far as I know. (unless someone found a way around that by now)