Logo not working

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
tombullock92
Posts: 9
Joined: Wed Mar 21, 2012 1:56 pm

Logo not working

Post by tombullock92 »

Hi,

For some reason, my logo does not show up in IE9 but does work in Firefox and Chrome. Im running Hesk 2.3 on an interal CentOS server.

Any help appreciated.

Thanks
Tom
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Re: Logo not working

Post by Henrie »

No idea what it could be.
Maybe you could post a link so we can verify what could be wrong?
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.
tombullock92
Posts: 9
Joined: Wed Mar 21, 2012 1:56 pm

Re: Logo not working

Post by tombullock92 »

Its an internal server so Im unable to link you.
Ive just checked the source code on IE9 and the actual code is there as if it is displaying it but doesnt actually show when viewing normally? :?
Klemen
Site Admin
Posts: 10145
Joined: Fri Feb 11, 2005 4:04 pm

Re: Logo not working

Post by Klemen »

Could you post the logo code you are using?
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
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Re: Logo not working

Post by Henrie »

maybe you are having a problem as described here http://stackoverflow.com/questions/9182 ... nly-in-ie9 ?

Have you tried clearing your temporary files / clearing browser cache?

Greetings,
Henrie
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.
tombullock92
Posts: 9
Joined: Wed Mar 21, 2012 1:56 pm

Re: Logo not working

Post by tombullock92 »

Klemen wrote:Could you post the logo code you are using?

Code: Select all

<div style="width:770px;margin-left:auto;margin-right:auto;padding-left:8px">
<a href="http://ticketsystem/"><img src="http://ticketsystem/img/oellogo.jpg" width="XXX" height="YYY" alt="" border="0" /></a>
</div>
Henrie wrote:maybe you are having a problem as described here http://stackoverflow.com/questions/9182 ... nly-in-ie9 ?

Have you tried clearing your temporary files / clearing browser cache?

Greetings,
Henrie
Yes I've tried clearing the cache etc. Will take a look at the link :)
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Re: Logo not working

Post by Henrie »

tombullock92 wrote:<div style="width:770px;margin-left:auto;margin-right:auto;padding-left:8px">
<a href="http://ticketsystem/"><img src="http://ticketsystem/img/oellogo.jpg" width="XXX" height="YYY" alt="" border="0" /></a>
</div>
http://ticketsystem/ is not a valid domainname? Or have you changed it just for us reading here?
The link http://ticketsystem/img/oellogo.jpg does show the image when you put it directly in your browser?
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.
tombullock92
Posts: 9
Joined: Wed Mar 21, 2012 1:56 pm

Re: Logo not working

Post by tombullock92 »

Its an internal webserver so its just the hostname of the server. The logo does show correctly with the direct link.
Klemen
Site Admin
Posts: 10145
Joined: Fri Feb 11, 2005 4:04 pm

Re: Logo not working

Post by Klemen »

Change

Code: Select all

width="XXX" height="YYY"
to the actual image width and height in your code!

For example if your logo is 240x60 pixel it should say

Code: Select all

width="240" height="60"
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
tombullock92
Posts: 9
Joined: Wed Mar 21, 2012 1:56 pm

Re: Logo not working

Post by tombullock92 »

It would be something that simple! :shock:

Thanks! :D
Post Reply