Hey,
Browse to your local template folder and open the subdirectory called `code`. Open and modify the `terayon_main.js` file.
If you scroll down a bit, you will see the following section:
//Set module state according to cookie.
if (showSlideshow == true) gEBI("SlideShowLink").style.display = "";
if (getCookie("ModuleTable")=="pinned") hideShow("ModuleTable");
if (getCookie("ShoutBox")!="normal") hideShow("ShoutBox");
if (getCookie("ServerStatistics")!="normal") hideShow("ServerStatistics");
if (getCookie("ServerTraffic")=="pinned") hideShow("ServerTraffic");
if (getCookie("FolderOptions")=="pinned") hideShow("FolderOptions");
Change the code accordingly:
- If a line contains !="normal", it will be hidden by default.
- If a line contains =="pinned", it will be displayed by default.
So in your case change all the lines to =="pinned".