Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Locating class/styles in css

Status
Not open for further replies.

netcert

Programmer
Apr 11, 2001
115
US
I have a stylesheet.css from my site and I've been trying to go through it and find each of the class/styles (whatever they're called) on the site(html) or in the .cfm's but can't find them all.

I'm looking for ones like .ERSNavBar, .ERSHeader TD A:link, .EToolBar, ButtonBar3, etc. Shouldn't I be able to just search all my .cfm files and find each of these or even browse my site, View Source and search for them?

I just assumed if the class/style was in the stylesheet they were being used somewhere on the site and I could find them.

What am I missing?
 
Dont search for .ERSNavBar in your code. Just look for ERSNavBar
More specifically...

Search for .className in CSS files only.
Search for just className in non-CSS files (including JS files).

It's a tedious process at the best of times [smile]
Cheers,
Jeff

[tt]Jeff's Page [/tt][tt]@[/tt][tt] Code Couch
[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top