You can define your own loading title and completed title. First find the following lines in options area.
var title_loading = 'message'
var title_complete = 'message'
Replace message with your own message to be displayed.
You can write you own HTML codes for the Desktop. Find the following part on the page.
<DIV id=Lmain ......>
<!-- Your custom HTML codes go here -->
</DIV>
You can put any valid HTML codes inside the above DIV layer and they will be displayed on the Desktop.
You can customize the messages displayed while the page is loading and after the pages is loaded. Locate the following areas in the DIV layer above.
<DIV id=Lmessage_loading>
<!-- Loading message goes here -->
</DIV>
<DIV id=Lmessage_finished ......>
<!-- Loaded message goes here -->
</DIV>
You can put any valid HTML codes inside the above DIV layers and they will be displayed at the correct times.
You can change the start button image and the clock image by editing the following lines in options area.
var start_icon = 'URL_path_of_image'
var clock_icon = 'URL_path_of_image'
Replace URL_path_of_image with your own image to be displayed.
You can use a vertical title image on your main program menu like the one on my site by editing the following line in options area.
var title_pic = 'URL_path_of_image'
Replace URL_path_of_image with your vertical title image to be displayed.
Return to Dynamic HTML Resource Center