Page 1 of 1
Decrease spacing between tickets on ticketlist?
Posted: Mon Sep 27, 2021 12:13 am
by cwshubby
Running 3.23.
How do you decrease the spacing between the tickets on the ticket list?

Re: Decrease spacing between tickets on ticketlist?
Posted: Mon Sep 27, 2021 3:28 pm
by Klemen
You do it by changing the CSS values.
You can easily overwrite them in Hesk admin panel by creating a custom css file, for example "custom.css":
Code: Select all
.table tbody td {
padding: 10px 10px;
}
Then load it for the admin panel in Admin > Settings > General > Admin CSS: Load an extra custom style file for the admin panel
Teaching CSS is out of the scope of our support, so if you need further help with that please consult a web developer or search for CSS tutorials in your favorite search engine.
Re: Decrease spacing between tickets on ticketlist?
Posted: Mon Sep 27, 2021 8:48 pm
by cwshubby
Perfect, that did it. I sat their inspecting it to death in DevTools and couldn't find the right one.
Worked like a charm!
Re: Decrease spacing between tickets on ticketlist?
Posted: Mon Aug 12, 2024 5:51 am
by oliver
This also assisted me running 3.4.6
I've been trying to reduce the spacing of between the text boxes and labels (specifically on the submit a ticket page) however I cant seem to reduce the padding between the boxes and reduce the size in the text boxes. I have tried playing with some of the .form-group styling but i haven't been successful.

Re: Decrease spacing between tickets on ticketlist?
Posted: Mon Aug 12, 2024 10:07 am
by Klemen
You can try deleting
margin-bottom: 4px; from
.form-group label and
height: 40px; from
.form input.form-control
Just make sure you are editing the right file; see the yellow notification box at the bottom of this article for details:
https://www.hesk.com/knowledgebase/?article=102
Re: Decrease spacing between tickets on ticketlist?
Posted: Mon Aug 12, 2024 11:40 pm
by oliver
Perfect, that's done exactly what I was wanting to achieve.