6
Edit: For Cbb:
In Admin go to Preferences->CBB->Module prefs and set notifications in there (not in general prefs) Notifications show in the "forum page" not the actual user thread.
page stretch again, not your fault you posted code, and nobody has fixed the page stretch thing yet..I could..

If you are using a theme apart from the XOOPS default put this in your theme.html header
<script>
function toggle(notifs_form)
{
obj=document.getElementById(notifs_form);
obj.style.display=!(obj.style.display=="block")? "block" : "none";
}
function swapimage(swap)
{
img_plus="<{$xoops_imageurl}>images/plus.gif";
img_minus="<{$xoops_imageurl}>images/minus.gif";
obj=document.getElementById(swap);
obj.src=!(obj.src==img_minus)? img_minus : img_plus;
}
</script>
</head>
<body>
etc
In the XOOPS default theme you will also find some images called plus and minus gif, (for notifications), and some others for pdf links etc you will need to copy these to the theme you are using..
Insanity is doing the same thing over and over again, and expecting different results...
ALbert Einstein