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
Change white color of main window
Moderator: mkoch227
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 
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


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
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 haveYou should change it to
Greetings,
Henrie
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;
}
Code: Select all
table.enclosing {
background-color:#eceff0;
color : #4a5571;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
width: 770px;
}
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.