I need to take out the page titles in Subjects 1.5 Module generated pages.
The example of what I need to take out is HERE in a screen capture to make myself more clear.
I already got into the index.php code in the Subjects folder, finding the variable $mainpagetitle in line 470.
Here is the code, to again, make myself more clear:
Code
467 echo "<table border=\"0\" width=\"100%\">"
468 ."<tr>\n"
469 ." <td align=\"center\">\n"
470 ."<font class=\"pn-title\"><a class=\"pn-title\" href=\"modules.php?op=modload&name=$ModName&file=index&req=viewpage&pageid=$mainpageid\">$mainpagetitle</a></font>";
468 ."<tr>\n"
469 ." <td align=\"center\">\n"
470 ."<font class=\"pn-title\"><a class=\"pn-title\" href=\"modules.php?op=modload&name=$ModName&file=index&req=viewpage&pageid=$mainpageid\">$mainpagetitle</a></font>";
In this last line 470 I already comment it with // and in that way I don't see the page title anymore, BUT, the space where the text goes is still there.
What I need is to delete all the blank space, to automatically move the content of the page, up.
I already use the HTML height tag, properly modified for PHP, but the blank space still there.
Any help would be very appreciated because I'm going nuts :x try to delete that blank space.
Thanks in advance
