How can i delete the header / make it invisible?

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
adminlogistic
Posts: 8
Joined: Mon Dec 18, 2023 12:23 pm

How can i delete the header / make it invisible?

Post by adminlogistic »

Hey all. I'm currently setting up HESK for my company, and since i know nothing about web-design i thought i'd look for help here.
How can i delete the header on main webpage? The one that is dark blue and has the name of helpdesk on it. I don't need it, along with the logo.
Thanks!
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Re: How can i delete the header / make it invisible?

Post by Klemen »

The easiest thing to do would be to simply hide that text using some CSS.

Open your "head.txt" file inside your main Hesk directory and add this inside:

<style type="text/css">
.cust-help .header {
display: none;
}
</style>

Save, upload and test.

However, note that we don't normally provide design/customization support so please ask someone familiar with HTML/CSS for any additional customization help.
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
adminlogistic
Posts: 8
Joined: Mon Dec 18, 2023 12:23 pm

Re: How can i delete the header / make it invisible?

Post by adminlogistic »

Much appreciated. I tried asking on an HTML forum but they all assume i know HTML, and i can't really put my question right.
One last thing, could you tell me how i can align the text in .breadcrumbs to the left? One that is just below the header with the name of tech support. I did try to ask, but i think i don't have the mental capabilities to figure it out myself
Klemen
Site Admin
Posts: 10142
Joined: Fri Feb 11, 2005 4:04 pm

Re: How can i delete the header / make it invisible?

Post by Klemen »

breadcrumbs should be left by default?

If not, try adding something like this to the above code:

Code: Select all

.breadcrumbs {
  text-align: left
}
If that doesn't work and since you don't know HTML/CSS, I recommend hiring someone for help. You can even post a project to sites like freelancer.com or upwork.com
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
Post Reply