How do I find the css class or id of a particular item in the HTML or find the item in the PHP template?
• Browse to the TalkBack test page http://yoursite.com/talkback/test.php. Enter a comment. Use your browser’s view source command to display the HTML source code. (Firefox: Ctrl+U, Internet Explorer: View menu > Source). Do a find on the source page for text that is part of the HTML element you are seeking or is near it. For example, to find the HTML element for the “Leave a comment” legend, do a find on “leave”. You will find the line:
That will give you the ID or class name if you want to change it’s styles in the CSS. If you want to find that line in the PHP template, search the template for “tb-comment-link” or “#entry”. You cannot search for the word “leave” in the template because it isn’t there. The text is in the language file.