Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a tool or methodology (other than trial and error) I can use to find unused image files? How about CSS declarations for ID's and Classes that don't even exist in the site?

It seems like there might be a way to just spider the site, profile it, and see which images and styles are never loaded.

share|improve this question
Hey Jon... just now (after reading the question and answers) I saw that it was you that asked the question. 4 years later I'm here looking for exactly the same thing! StackOverflow is really amazing... By the way: I just love the badge "Works on my machine" you have in your profile... I think I'll borrow this! :D – Leniel Macaferi Jun 1 '12 at 6:50
1  
More info at stackoverflow.com/questions/135657/… – Lamy Jul 5 '12 at 11:52

9 Answers

up vote 39 down vote accepted

There's a Firefox extension that finds unused CSS selectors on a page. It has an option to spider the whole site. Version 3.01 should work with newer versions of Firefox.

https://addons.mozilla.org/en-US/firefox/addon/dust-me-selectors/

And here's another option.

https://addons.mozilla.org/en-US/firefox/addon/css-usage/

share|improve this answer
1  
Yes, this will only work on older version of FireFox, but this: CSS Usage - Firefox Addon is the same and will work also with the newest version. – Andrea Salicetti Oct 25 '11 at 10:39

You don't have to pay any web service or search for an addon, you already have this in Google Chrome under F12 (Inspector)->Audits->Remove unused CSS rules

Screenshot:Screenshot

share|improve this answer
3  
This is great, thanks for the tip! – Brian Mar 11 '12 at 20:10
1  
Good to use existing tools, but this only scans the loaded page, not the entire site? – Mark Cooper May 29 '12 at 7:53
2  
Awesome, thanks. Be careful about responsive websites because you will have to reload for different sizes in order to know that one or more of these styles aren't being used. It only detects for the styles of the viewport being viewed. – micah Oct 26 '12 at 6:30

At a file level:

use wget to aggressively spider the site and then process the http server logs to get the list of files accessed, diff this with the files in the site

diff \
 <(sed some_rules httpd_log | sort -u) \
 <(ls /var/www/whatever | sort -u) \
 | grep something
share|improve this answer
1  
+1 for extra command-line geekiness! – ngeek Mar 2 '11 at 12:39

Try WARI - Web Application Resource Inspector.

It finds unused images, unused and duplicate CSS/JS.

Link: wari.konem.net

share|improve this answer
1  
Tried it, i have a huge php codebase. Doesn't look like it works – shikhar Mar 3 '11 at 11:01

CSS Redundancy Checker is a tool you run locally, which you pass a stylesheet and either a list of URLs or a directory of HTML files. Here's the description given on the tool's site:

A simple script that, given a CSS stylesheet and either a .txt file listing URLs of HTML files, or a directory of HTML files, will iterate over them all and list the CSS statements in the stylesheet which are never called in the HTML.

Basically, it helps you keep your CSS files relevant and compact. And it's reasonably accurate.

share|improve this answer

TopStyle has a suite of tools for locating and dealing with orphan classes. It will also give you reports on where IDs and classes are used in the HTML, allowing you to quickly open and skip to the relevant markup. Here's the blurb from the website regarding this feature:

Site Reports: See at a glance where styles are used in your site. Find out where you've applied style classes that aren't defined in any style sheets, or see what style classes you've defined that aren't being used.

Very useful for dissecting unfamiliar websites.

It doesn't find unused images, though.

share|improve this answer
Why is this answer voted down? – Charles Roper Apr 23 '10 at 17:18

I seem to recall either Adobe Dreamweaver or Adobe Golive having a feature to find both orphaned styles and images; can't remember which now. Possibly both, but the features were well-hidden.

share|improve this answer

I found this tool that works with all versions of Firefox! It takes a little while to learn how it works, but once it starts it seems pretty good. It will save a new version of the CSS with remarked out CSS selectors so you can quickly revert if you need to.

CSS Usage - Firefox Addon

share|improve this answer

To answer your question about a tool to find unused image files, you can use Xenu to spider your site to find all of the images that your site uses. Then Xenu prompts you for ftp access so that it can crawl your directories to find orphaned files. I have not yet used it on a production server but it sounds worthy to look into.

EDIT: You just have to be careful not to delete images that are used by javascript.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.