Posted by Matt
2014-04-29

Thanks Tom, I changed the XA_CLASS=>'CVTextarea' to fix that. One last thing,I am adding links to the header & modifying the web/staff/include/df.top.menu.inc.php.I used print( '<a href="index.php">Go To another page</a>' ); but the link doesnt appear within the blue pane @ the top. Any suggestions?
Posted by Tom
2014-04-30

OK, this example shows how to put a link on the top menu. Open web/staff/include/tpl.body.header.inc.php in a text editor and insert the following lines at line 43
	<td class='dmenu_td'>
<a class="dmenu_item" href="http://www.google.com/" >Google</a>
</td>
<td class='dmenu_td_empty'>&nbsp;</td>
The result should look like
	<?php 
}
}
?>
<td class='dmenu_td'>
<a class="dmenu_item" href="http://www.google.com/" >Google</a>
</td>
<td class='dmenu_td_empty'>&nbsp;</td>
</tr>
<?php } ?>

</table>
</div>