changing the color of the text in the submit a support request form

Everything related to Hesk - helpdesk software

Moderator: mkoch227

Post Reply
JHenckel
Posts: 8
Joined: Mon Mar 08, 2021 7:20 pm

changing the color of the text in the submit a support request form

Post by JHenckel »

Hello,
I was just curious what parts of the app.min.css ( on the customer side) I need to change to change the font from gray to black.
I have been looking through the code for about an hour was curious if someone need one parts I needed to change exaclty.
Thank you
Klemen
Site Admin
Posts: 10136
Joined: Fri Feb 11, 2005 4:04 pm

Re: changing the color of the text in the submit a support request form

Post by Klemen »

In CSS files you will need to search for color codes, starting with

Code: Select all

color:
For example:

Code: Select all

color: #959eb0;
could be changed to

Code: Select all

color: #000000;
or even

Code: Select all

color: black;
Learn more: CSS Color :)


P.s.: to make editing easier, you can edit the "app.css" file instead and save a copy as "app.min.css"
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
JHenckel
Posts: 8
Joined: Mon Mar 08, 2021 7:20 pm

Re: changing the color of the text in the submit a support request form

Post by JHenckel »

First of all,
thank you for your rapid response.
I followed your instructions and it only changes the text black when I turn on debug mode.
The files i edited were theme\hesk3\customer\css app
then I Saved a copy as app.min.css.
did i miss something?
Thank you for your time.
Klemen
Site Admin
Posts: 10136
Joined: Fri Feb 11, 2005 4:04 pm

Re: changing the color of the text in the submit a support request form

Post by Klemen »

Debug mode use "app.css" and normal mode (debug off) uses "app.min.css". So if both files are the same, they should show the same result.

Maybe you need to force-refresh the page in our browser (CTRL + F5 in most browsers) to load the new CSS files?
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
JHenckel
Posts: 8
Joined: Mon Mar 08, 2021 7:20 pm

Re: changing the color of the text in the submit a support request form

Post by JHenckel »

Alright!
After refreshing the server like 4 times, every the colors did change.
Thank you so much for your support.
The steps you told me worked perfectly
Have a good day
Post Reply