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!
How can i delete the header / make it invisible?
Moderator: mkoch227
-
- Posts: 8
- Joined: Mon Dec 18, 2023 12:23 pm
Re: How can i delete the header / make it invisible?
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.
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 
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


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
-
- Posts: 8
- Joined: Mon Dec 18, 2023 12:23 pm
Re: How can i delete the header / make it invisible?
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
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
Re: How can i delete the header / make it invisible?
breadcrumbs should be left by default?
If not, try adding something like this to the above code:
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
If not, try adding something like this to the above code:
Code: Select all
.breadcrumbs {
text-align: left
}
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
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


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