background not showing on the next screen

I am using iMIS WCM module version 15.1.2.4730 with customized template 1502.

I customized background colour (02-Styles.css) to gray colour (#EEEEEE):

body {
margin: 0;
padding: 0;
text-align: left;
color: #6a6869;
background-color: #EEEEEE;

The gray background only shows on the first minitor screen. If I scroll down, background remins white.
Please see example:

http://209.217.68.142/imis15/eng/Membership/Member_List/eng/mem/Member_L...

Please advice,
Thank you,
Ewa

 

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

There is a reference to a

There is a reference to a css file:

http://209.217.68.142/imis15/YUI/build/reset-fonts-grids/reset-fonts-gri...

which has the following line:

html{color:#000;background:#FFF;}

Remove the background in that file.

Nasser

 Hi Nasser, I am sorry, I

 Hi Nasser,

I am sorry, I posted a wrong version of the iMIS. The correct version I am working with is: 15.1.2.4730.

Unfortunately this version doesn't have the stylesheet (reset-fonts-grids.css) you have mention.

Any other idea how to solve this issue?

Thank you in advance,

Ewa

 

Try modifying the HTML tag in 01-iMIS.css

Looking at the stylesheet applications at the site you specified (using the IE8 Developer Tool or Firefox's Firebug), it looks like you indeed have a 01-iMIS.css file at http://209.217.68.142/imis15/App_Themes/eng/01-iMIS.css .   Look for the HTML selector and add your "background-color: #EEEEEE;" there, and see if that works for you (I got the desired results by adding the attribute via the IE8 Developer Tool).

Alternatively, you can edit the 02-Styles.css file and add a rule for HTML.

Remove height attribute for

Remove height attribute for "form" element

http://209.217.68.142/imis15/App_Themes/eng/01-iMIS.css

 

html, body, form {
height:100% [ Remove this line]
width:100%;
}

It works!

Thank you Balaji - it works!

I also did try Paul's recommendation and it works too!

Thanks for your help,

Ewa

Both solutions works!

Thank you Paul - it works!

I also did try Balai's recommendation and it works too!

Thanks for your help,

Ewa