Difference between revisions of "CUSTOM WELCOME/LOGIN PAGE"

From Scalix Wiki
Jump to: navigation, search
(custom html start to ending of head)
 
(Changed tags because i'm new to this...)
Line 1: Line 1:
Look and Feel Customization
 
 
-
 
Custom Welcome/Login Page
 
 
 
In order to customize the welcome/login page you should understand that the page is (initially) generated on-demand when a user visits the webmail url. We need to  
 
In order to customize the welcome/login page you should understand that the page is (initially) generated on-demand when a user visits the webmail url. We need to  
 
create a static page that can perform the same tasks that this dynamic creation does. In Scalix 10 there was an Admin Resource Kit which included a static webpage
 
create a static page that can perform the same tasks that this dynamic creation does. In Scalix 10 there was an Admin Resource Kit which included a static webpage
Line 11: Line 6:
  
 
You can change the title between <title> </title> in the head of the webpage:
 
You can change the title between <title> </title> in the head of the webpage:
[code]
+
[quote]
 
<html>
 
<html>
 
   <head>
 
   <head>
Line 39: Line 34:
 
}
 
}
 
     </style>
 
     </style>
[/code]
+
[/quote]
  
 
The following section is the browser detection and other functions. These are essentially to the proper operation of the Webmail AJAX client. It is not recommended to modify these.
 
The following section is the browser detection and other functions. These are essentially to the proper operation of the Webmail AJAX client. It is not recommended to modify these.

Revision as of 09:51, 10 January 2007

In order to customize the welcome/login page you should understand that the page is (initially) generated on-demand when a user visits the webmail url. We need to create a static page that can perform the same tasks that this dynamic creation does. In Scalix 10 there was an Admin Resource Kit which included a static webpage to do this. This has not been released for Scalix 11. We can use the page from Scalix 10 for the basis of the customization in Scalix 11.

Let's review the Scalix 10 "default.html" so that you understand what it is doing.

You can change the title between <title> </title> in the head of the webpage: [quote] <html>

 <head>
   <title>The Best Webmail System </title>
   <style type="text/css">

input, span {

 font-family:helvetica, sans-serif;
 font-size:11px;
 color:black;
 font-weight:normal;
 font-style:normal;

}

span {

 cursor:default;

}

a:link, a:visited, a:active {

 color:#BB0000;
 text-decoration:none;

}

a:hover {

 color:#BB0000;
 text-decoration:underline;

}

   </style>

[/quote]

The following section is the browser detection and other functions. These are essentially to the proper operation of the Webmail AJAX client. It is not recommended to modify these. [code]

   <script type="text/javascript" src="/webmail/brwsniff.js"></script>
   <script type="text/javascript" src="/webmail/fugu.js"></script>
   <script type="text/javascript" src="/webmail/index.js"></script>
   <script type="text/javascript">
     </script>
 </head>

[/code]

More to come...