Page 1 of 1

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

Posted: Mon Mar 08, 2021 7:25 pm
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

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

Posted: Mon Mar 08, 2021 7:53 pm
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"

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

Posted: Mon Mar 08, 2021 10:47 pm
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.

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

Posted: Tue Mar 09, 2021 7:18 am
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?

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

Posted: Tue Mar 09, 2021 3:50 pm
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