Page 1 of 1

Change white color of main window

Posted: Mon Feb 22, 2010 12:49 pm
by dg005978
Script URL: http://helpdesk.dagaz-coaching.nl
Version of script: 2.1
Hosting company: Dutchwebhosting
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution: css, colors, background

Write your message below:

First of all: I have not uploaded the phpinfo.php and session_test.php as my installation of the script is working fine.

The problem I have is that I wish to change the color of the background to ECEFF0 like I have done with the border around the helpdesk.

Check the link below: the helpdesk is integrated with a wrapper in my joomla website. I would like the white in the helpdesk to match the light blue/grey ECEff0 of my joomla site.

I have checked the css file. I could change the color of the border as I could find the f3fef4 easily and modify that to eceff0. I now want to change the back background of the main hesk window to eceff0 too. I have been experimenting a little but cannot find the ffffff i need to change to eceff0.

This is the link to the page in my site:

http://www.dagaz-coaching.nl/index.php? ... Itemid=123

Some advise would be appreciated.

Jos

Posted: Wed Feb 24, 2010 5:33 pm
by Klemen
You probably want to change the #FFFFFF color code for the table.enclosing class.

Posted: Sat Mar 06, 2010 4:20 pm
by dg005978
I tried that but it did not work. It is still white. Did you check the link I gave you?

Posted: Sat Mar 06, 2010 4:54 pm
by Henrie
I checked the link you gave and I am sorry to say, but you did not change the background-color #ffffff of the table.enclosing class as Klemen suggested.

In your http://helpdesk.dagaz-coaching.nl/hesk_style.css you have

Code: Select all

table.enclosing {
background-color:#ffffff;
	color : #4a5571;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	width: 770px;
}
You should change it to

Code: Select all

table.enclosing {
background-color:#eceff0;
	color : #4a5571;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	width: 770px;
}
Greetings,
Henrie