vote up 9 vote down star
5

Is there any method to clean the website unused CSS, skins, images?

flag

75% accept rate

3 Answers

vote up 2 vote down

I'm not sure about doing it in Visual Studio other than doing a Find In Solution for each CSS rule / Skin / Image.

To find unused CSS rules, you could use the PageSpeed add-on for the Firebug add-on for Firefox. This will analyse individual pages of your site and give you a load of info on how to speed it up, including removing unused CSS rules. Might be helpful!

link|flag
vote up 4 vote down

There's a firefox add-on Dust-Me Selectors that will find unused CSS selectors.

link|flag
this will do in the client side, but I want to clean in Visual Studio... – Muhammad Akhtar Jul 7 at 15:42
vote up 1 vote down

Be careful with looking the pages once they're rendered, in case selectors are used in code but not rendered in the final pages due to conditions during execution.

I can't think of anything other than an old fashioned find/replace in the code-behinds because a program would have to have syntactical knowledge of the tags, but if they're being built with, they'll probably be strings.

link|flag

Your Answer

Get an OpenID
or

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