Decrease spacing between tickets on ticketlist?

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
cwshubby
Posts: 27
Joined: Thu Jul 17, 2014 3:36 am

Decrease spacing between tickets on ticketlist?

Post by cwshubby »

Running 3.23.

How do you decrease the spacing between the tickets on the ticket list?

Image
Klemen
Site Admin
Posts: 10139
Joined: Fri Feb 11, 2005 4:04 pm

Re: Decrease spacing between tickets on ticketlist?

Post 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.
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
cwshubby
Posts: 27
Joined: Thu Jul 17, 2014 3:36 am

Re: Decrease spacing between tickets on ticketlist?

Post 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!
oliver
Posts: 2
Joined: Mon Aug 12, 2024 4:51 am

Re: Decrease spacing between tickets on ticketlist?

Post 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. Image
Klemen
Site Admin
Posts: 10139
Joined: Fri Feb 11, 2005 4:04 pm

Re: Decrease spacing between tickets on ticketlist?

Post 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
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
oliver
Posts: 2
Joined: Mon Aug 12, 2024 4:51 am

Re: Decrease spacing between tickets on ticketlist?

Post by oliver »

Perfect, that's done exactly what I was wanting to achieve.
Post Reply