How to change the support ticket system font's size and color

Miles

New Member
the backend small blue fonts are difficult to view.
Will you please let me know how to ajust the font size and color please?
 
You could add a file named style-custom.css in backend/assets/css and place your css modifications for font size/color there.
That file will be autoloaded by mailwizz, and will not be overidden at updates.
You can do the same for customer area, place a style-custom.css in /customer/assets/css folder.

Example of file contents:
Code:
.box .box-header .btn.btn-primary {
   color:#ffffff!important;
   background:#333333!important;
   border-color: #333333!important;
}

Thanks.
 
Here's how it's looking on my end with the above changes, so if we're speaking about same thing, then it works.
style-custom-css-buttons.png
 
Could you put a image so that i can see exactly what you are talking about?
Just highlight the area in the image.
 
Try to put in style-custom.css like this:
Code:
.box .box-header .btn.btn-primary {
   color:#ffffff!important;
   background:#333333!important;
   border-color: #333333!important;
}

table a {
    color:#333333!important;
}

table a:hover {
    color:#333333!important;
    text-decoration:underline;
}
 
Great thanks, it's working now.

Do we have any chance to have email piping function in the support ticket system?
 
Dunno, some of the users have a really hard time installing the cron jobs to make the app work, if i have them setup in cpanel for email piping i think it's way too much.
Not sure, i had this in mind at some point and i gave up on it because i remember there were more cons than pros.
 
Back
Top