Maximo List Archive

This is an archive of the Maximo Yahoo Community. The content of this pages may be a sometimes obsolete so please check post dates.
Thanks to the community owner Christopher Wanko for providing the content.



customize new user text on login page v7

From: Joan (2011-10-28 15:28)

We are rolling out self registration. I am trying to find where I can change the size and color of the text new user? text beside the register now link. Thanks for any help you can provide.


From: Victor (2011-10-28 15:38)

Hi Joan,
Kindly follow through the below path on the maximo server (where maximo is installed):
The font for the User Messages can be modified in the maximo.css file found in the following path :
<Maximo Root>\maximo\applications\maximo\maximouiweb\webmodule\webclient\login\css
File names :
1. login.css
2. RTLlogin.css
For examples :
<Maximo Root>\maximo\applications\maximo\maximouiweb\webclient\css
Find the following section for userMessage:
/* userMessage */
.um
{
color: #DFB4A2;
font-weight:bold;
}
For example if you wanted to change the size you could add font-size:14px; so the resulting change would be:
/* userMessage */
.um
{
color: #DFB4A2;
font-weight:bold;
font-size:14px;

}
If you wanted to change the color to Red for the user message, then the change would be :
/* userMessage */
.um
{
color: #EE0000;
font-weight:bold;
}
You will need to rebuild the Maximo EAR file for the changes to take effect. The time out value for the length of time a user message displays can be set in the library.js file found in the following example path: <Maximo Root>\maximo\applications\maximo\maximouiweb\webclient\css
Find the following entry:
messageTimeout=window.setTimeout("removeUserMessage("+dialog+")", 5000);
You can change the 5000 value to another value in microseconds.
Save the file and you will need to rebuild the Maximo EAR file for the changes to take effect.
Keep in mind that none of these changes are supported by patches or hot fixes and would need to be maintained manually.
Hope this helps.
Thanks,
Victor.
--- In MAXIMO@yahoogroups.com, "Joan" <joan.e.shroyer-keno@...> wrote:
>
> We are rolling out self registration. I am trying to find where I can change the size and color of the text new user? text beside the register now link. Thanks for any help you can provide.
>


From: Victor (2011-10-28 15:39)

You will have to rebuild and redeploy ear after modifications to the files.
Thanks,
Victor.
--- In MAXIMO@yahoogroups.com, "Victor" <vikas17.j@...> wrote:
>
> Hi Joan,
>
> Kindly follow through the below path on the maximo server (where maximo is installed):
>
> The font for the User Messages can be modified in the maximo.css file found in the following path :
>
> <Maximo Root>\maximo\applications\maximo\maximouiweb\webmodule\webclient\login\css
>
> File names :
> 1. login.css
> 2. RTLlogin.css
>
>
> For examples :
>
> <Maximo Root>\maximo\applications\maximo\maximouiweb\webclient\css
>
> Find the following section for userMessage:
>
> /* userMessage */
> .um
> {
> color: #DFB4A2;
> font-weight:bold;
> }
>
> For example if you wanted to change the size you could add font-size:14px; so the resulting change would be:
> /* userMessage */
> .um
> {
> color: #DFB4A2;
> font-weight:bold;
> font-size:14px;
>
> }
>
> If you wanted to change the color to Red for the user message, then the change would be :
> /* userMessage */
> .um
> {
> color: #EE0000;
> font-weight:bold;
> }
>
>
>
> You will need to rebuild the Maximo EAR file for the changes to take effect. The time out value for the length of time a user message displays can be set in the library.js file found in the following example path: <Maximo Root>\maximo\applications\maximo\maximouiweb\webclient\css
> Find the following entry:
> messageTimeout=window.setTimeout("removeUserMessage("+dialog+")", 5000);
>
> You can change the 5000 value to another value in microseconds.
> Save the file and you will need to rebuild the Maximo EAR file for the changes to take effect.
>
> Keep in mind that none of these changes are supported by patches or hot fixes and would need to be maintained manually.
>
>
> Hope this helps.
>
> Thanks,
> Victor.
>
> --- In MAXIMO@yahoogroups.com, "Joan" <joan.e.shroyer-keno@> wrote:
> >
> > We are rolling out self registration. I am trying to find where I can change the size and color of the text new user? text beside the register now link. Thanks for any help you can provide.
> >
>


From: Victor (2011-10-28 15:41)

The example given in the previous message is for changing the font for the User Messages can be modified in the maximo.css file.
Thanks,
Victor.
--- In MAXIMO@yahoogroups.com, "Victor" <vikas17.j@...> wrote:
>
> You will have to rebuild and redeploy ear after modifications to the files.
>
> Thanks,
> Victor.
>
> --- In MAXIMO@yahoogroups.com, "Victor" <vikas17.j@> wrote:
> >
> > Hi Joan,
> >
> > Kindly follow through the below path on the maximo server (where maximo is installed):
> >
> > The font for the User Messages can be modified in the maximo.css file found in the following path :
> >
> > <Maximo Root>\maximo\applications\maximo\maximouiweb\webmodule\webclient\login\css
> >
> > File names :
> > 1. login.css
> > 2. RTLlogin.css
> >
> >
> > For examples :
> >
> > <Maximo Root>\maximo\applications\maximo\maximouiweb\webclient\css
> >
> > Find the following section for userMessage:
> >
> > /* userMessage */
> > .um
> > {
> > color: #DFB4A2;
> > font-weight:bold;
> > }
> >
> > For example if you wanted to change the size you could add font-size:14px; so the resulting change would be:
> > /* userMessage */
> > .um
> > {
> > color: #DFB4A2;
> > font-weight:bold;
> > font-size:14px;
> >
> > }
> >
> > If you wanted to change the color to Red for the user message, then the change would be :
> > /* userMessage */
> > .um
> > {
> > color: #EE0000;
> > font-weight:bold;
> > }
> >
> >
> >
> > You will need to rebuild the Maximo EAR file for the changes to take effect. The time out value for the length of time a user message displays can be set in the library.js file found in the following example path: <Maximo Root>\maximo\applications\maximo\maximouiweb\webclient\css
> > Find the following entry:
> > messageTimeout=window.setTimeout("removeUserMessage("+dialog+")", 5000);
> >
> > You can change the 5000 value to another value in microseconds.
> > Save the file and you will need to rebuild the Maximo EAR file for the changes to take effect.
> >
> > Keep in mind that none of these changes are supported by patches or hot fixes and would need to be maintained manually.
> >
> >
> > Hope this helps.
> >
> > Thanks,
> > Victor.
> >
> > --- In MAXIMO@yahoogroups.com, "Joan" <joan.e.shroyer-keno@> wrote:
> > >
> > > We are rolling out self registration. I am trying to find where I can change the size and color of the text new user? text beside the register now link. Thanks for any help you can provide.
> > >
> >
>


From: Shroyer-Keno, Joan E (2011-11-08 07:32)

Victor,
Thank you so much for your help.
Thank you,
Joan
-----Original Message-----
From: MAXIMO@yahoogroups.com [mailto:MAXIMO@yahoogroups.com] On Behalf Of Victor
Sent: Friday, October 28, 2011 11:39 AM
To: MAXIMO@yahoogroups.com
Subject: EXTERNAL: [MAXIMO List] Re: customize new user text on login page v7
Hi Joan,
Kindly follow through the below path on the maximo server (where maximo is installed):
The font for the User Messages can be modified in the maximo.css file found in the following path :
<Maximo Root>\maximo\applications\maximo\maximouiweb\webmodule\webclient\login\css
File names :
1. login.css
2. RTLlogin.css
For examples :
<Maximo Root>\maximo\applications\maximo\maximouiweb\webclient\css
Find the following section for userMessage:
/* userMessage */
.um
{
color: #DFB4A2;
font-weight:bold;
}
For example if you wanted to change the size you could add font-size:14px; so the resulting change would be:
/* userMessage */
.um
{
color: #DFB4A2;
font-weight:bold;
font-size:14px;

}
If you wanted to change the color to Red for the user message, then the change would be :
/* userMessage */
.um
{
color: #EE0000;
font-weight:bold;
}
You will need to rebuild the Maximo EAR file for the changes to take effect. The time out value for the length of time a user message displays can be set in the library.js file found in the following example path: <Maximo Root>\maximo\applications\maximo\maximouiweb\webclient\css
Find the following entry:
messageTimeout=window.setTimeout("removeUserMessage("+dialog+")", 5000);
You can change the 5000 value to another value in microseconds.
Save the file and you will need to rebuild the Maximo EAR file for the changes to take effect.
Keep in mind that none of these changes are supported by patches or hot fixes and would need to be maintained manually.
Hope this helps.
Thanks,
Victor.
--- In MAXIMO@yahoogroups.com, "Joan" <joan.e.shroyer-keno@...> wrote:
>
> We are rolling out self registration. I am trying to find where I can change the size and color of the text new user? text beside the register now link. Thanks for any help you can provide.
>
------------------------------------
Email addresses you might need:
Posting: MAXIMO@yahoogroups.com
Join : MAXIMO-subscribe@yahoogroups.com
Leave : MAXIMO-unsubscribe@yahoogroups.com
Cry : MAXIMO-owner@yahoogroups.com
Group : http://groups.yahoo.com/group/MAXIMOYahoo! Groups Links


From: Victor (2011-11-08 13:22)

You're welcome Joan !
Thanks,
Victor.
--- In MAXIMO@yahoogroups.com, "Shroyer-Keno, Joan E" <joan.e.shroyer-keno@...> wrote:
>
> Victor,
>
> Thank you so much for your help.
>
> Thank you,
>
> Joan
>
> -----Original Message-----
> From: MAXIMO@yahoogroups.com [mailto:MAXIMO@yahoogroups.com] On Behalf Of Victor
> Sent: Friday, October 28, 2011 11:39 AM
> To: MAXIMO@yahoogroups.com
> Subject: EXTERNAL: [MAXIMO List] Re: customize new user text on login page v7
>
> Hi Joan,
>
> Kindly follow through the below path on the maximo server (where maximo is installed):
>
> The font for the User Messages can be modified in the maximo.css file found in the following path :
>
> <Maximo Root>\maximo\applications\maximo\maximouiweb\webmodule\webclient\login\css
>
> File names :
> 1. login.css
> 2. RTLlogin.css
>
>
> For examples :
>
> <Maximo Root>\maximo\applications\maximo\maximouiweb\webclient\css
>
> Find the following section for userMessage:
>
> /* userMessage */
> .um
> {
> color: #DFB4A2;
> font-weight:bold;
> }
>
> For example if you wanted to change the size you could add font-size:14px; so the resulting change would be:
> /* userMessage */
> .um
> {
> color: #DFB4A2;
> font-weight:bold;
> font-size:14px;
>
> }
>
> If you wanted to change the color to Red for the user message, then the change would be :
> /* userMessage */
> .um
> {
> color: #EE0000;
> font-weight:bold;
> }
>
>
>
> You will need to rebuild the Maximo EAR file for the changes to take effect. The time out value for the length of time a user message displays can be set in the library.js file found in the following example path: <Maximo Root>\maximo\applications\maximo\maximouiweb\webclient\css
> Find the following entry:
> messageTimeout=window.setTimeout("removeUserMessage("+dialog+")", 5000);
>
> You can change the 5000 value to another value in microseconds.
> Save the file and you will need to rebuild the Maximo EAR file for the changes to take effect.
>
> Keep in mind that none of these changes are supported by patches or hot fixes and would need to be maintained manually.
>
>
> Hope this helps.
>
> Thanks,
> Victor.
>
> --- In MAXIMO@yahoogroups.com, "Joan" <joan.e.shroyer-keno@> wrote:
> >
> > We are rolling out self registration. I am trying to find where I can change the size and color of the text new user? text beside the register now link. Thanks for any help you can provide.
> >
>
>
>
>
> ------------------------------------
>
> Email addresses you might need:
> Posting: MAXIMO@yahoogroups.com
> Join : MAXIMO-subscribe@yahoogroups.com
> Leave : MAXIMO-unsubscribe@yahoogroups.com
> Cry : MAXIMO-owner@yahoogroups.com
> Group : http://groups.yahoo.com/group/MAXIMOYahoo! Groups Links
>