I was wondering if there was a way to query elements according to the word it contains. So, if I have:\[code\]<div id="globalPageHeader"> <h1>Home</h1></div>\[/code\]I want any \[code\]#globalPageHeader h1\[/code\] that has the word \[code\]Home\[/code\] in it, to have a \[code\]display\[/code\] property of \[code\]none\[/code\].Obviously this example wouldn't work, but I was wondering if there's something like it:\[code\]#globalPageHeader h1(innerHTML == "Home") { display: none;}\[/code\]I don't want to use JavaScript's \[code\]innerHTML\[/code\] because I have no access to the javascript parts of the admin.Any help is much appreciated!