Change white color of main window

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
dg005978
Posts: 2
Joined: Mon Feb 22, 2010 12:40 pm

Change white color of main window

Post 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
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

You probably want to change the #FFFFFF color code for the table.enclosing class.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
dg005978
Posts: 2
Joined: Mon Feb 22, 2010 12:40 pm

Post by dg005978 »

I tried that but it did not work. It is still white. Did you check the link I gave you?
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Post 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
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.
Post Reply