Since this code uses jQuery,
ensure that this is present in your headers:
<script src="jquery.js"></script>
Footers:
<script>
// Made by Omikron 9861
$("div#bodyarea table tbody tr td table tbody tr td.windowbg table.ssi_table tbody tr td a:contains('Write Comment')").parent().hide();$("table.ssi_table").hover(function(){$("table.ssi_table tbody tr td:contains('Write Comment')").toggle();},function(){$("table.ssi_table tbody tr td:contains('Write Comment')").toggle();});</script>
This code hides the 'X Comments | Write Comments' part on the portal and then displays it when you hover your mouse over a news item. The code above is the compressed one to save bandwidth. If you want the original for educational purposes, here it is:
<script>
//Made by Omikron 9861
//Leave this copyright intact
$("div#bodyarea table tbody tr td table tbody tr td.windowbg table.ssi_table tbody tr td a:contains('Write Comment')").parent().hide();
$("table.ssi_table").hover(
function(){
$("table.ssi_table tbody tr td:contains('Write Comment')").toggle();
}, function(){
$("table.ssi_table tbody tr td:contains('Write Comment')").toggle();
});
</script>