Centering Header and Footer.txt [SOLVED]
Moderator: mkoch227
Centering Header and Footer.txt [SOLVED]
Script URL: http://www.euro-list.com/hesk/
Version of script: 2.6.1
Hosting company: Host Gator
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
center header txt, center footer txt, header footer center ...
Write your message below:
I have searched and searched for how to center the header and footer of the help desk. Can you please tell me how or at least point me in the right direction?
Thank you for your time.
Version of script: 2.6.1
Hosting company: Host Gator
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
center header txt, center footer txt, header footer center ...
Write your message below:
I have searched and searched for how to center the header and footer of the help desk. Can you please tell me how or at least point me in the right direction?
Thank you for your time.
Last edited by RBlack on Tue Mar 03, 2015 9:32 pm, edited 1 time in total.
Re: Centering Header and Footer.txt
In your header.txt / footer.txt markup, try adding this to the very beginning:
and at the very end, add this:
Code: Select all
<div style="text-align: center">
Code: Select all
</div>
Mike, Lead Developer of
HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
Re: Centering Header and Footer.txt
Nope... unfortunately, that didn't work. 

Re: Centering Header and Footer.txt
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
Re: Centering Header and Footer.txt
I've tried changing various things in the CSS. It is stuck to the left.
Please, I need someone to tell me how to do this. I'm sure I am not the first person to ask this "stupid" question.
Please, I need someone to tell me how to do this. I'm sure I am not the first person to ask this "stupid" question.
Re: Centering Header and Footer.txt
This doesn't appear to be a HESK issue. The table itself IS centered, however the content inside is not.


Mike, Lead Developer of
HESK: A surprisingly simple, user-friendly and FREE help desk software with integrated knowledgebase.
Re: Centering Header and Footer.txt
It's centered everywhere else on my site with the same code.
Re: Centering Header and Footer.txt
You need to understand that teaching HTML/CSS is out of the scope of our support here, or we could be here all day long answering customization questions.
That said, a solution to your problem would be to assign your header/footer tables a class name, for example:
Then use the appropriate CSS code (inside hesk_style.css or a custom style file) to center text inside footer class td's:
To learn more about CSS please search Google, there are a lot of good free tutorials available.
That said, a solution to your problem would be to assign your header/footer tables a class name, for example:
Code: Select all
<table class="myfooter">
Code: Select all
.myfooter td {
text-align: center;
}
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
Re: Centering Header and Footer.txt
I LOVE YA BABY!!!!!
Re: Centering Header and Footer.txt [SOLVED]
Glad to hear you got it working.
P.s.: if you use Firefox press CTRL + SHIFT + C when viewing a web page, a very powerful tool for inspecting HTML elements and their CSS properties will open.
P.s.: if you use Firefox press CTRL + SHIFT + C when viewing a web page, a very powerful tool for inspecting HTML elements and their CSS properties will open.
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