By drinkingsouls on
Hey, In my theme directory I have page.tpl.php and node.tpl.php
Im looking for the 'help' div, which is in niether page, where is the help div defined? In what file will I find the oopening for the div?
< div class"help" >
Thanks
Comments
Should be in page.tpl.php I
Should be in page.tpl.php I believe though it could be inside the message area. Look outward from the help div, either it or one of the near parents should be in page.tpl.php. The firebug extension for Firefox is useful for this.
the is defined in
the
and it's outputted in your page by the following line in your page.tpl.php
print $helpYou can override it by adding the following function in template.php file
for example if you want to change the class="help" into something else just add the following lines in the template.php file of your theme.
Please let me know if this worked for you.