[Help] Website Logo Invisible on Internet Explorer 11

5 replies
I need help with my website logo. It's invisible under IE 11.
It works just on older IE version, on latest Chrome and latest Firefox.

I search on Google about my issue, found a few solution, that I need to convert my CMYK logo to RGB on Photoshop before saving it as PNG/JPEG. I tried this solution but still doesn't work. Logo is still invisible under IE 11.

What should I do?

Screenshots below based on IE11, Chrome and Firefox
http://s15.postimg.org/6h9894ou1/Lib...xplorer_11.png
http://s8.postimg.org/mjy07f8zo/Libre_Coupon_Chrome.jpg
http://s17.postimg.org/lkv34op3i/Lib...on_Firefox.jpg

Thanks.
#explorer #internet #invisible #logo #website
  • Profile picture of the author KirkMcD
    It's a png file but the extension has jpg.
    Try changing the extension to png.
    {{ DiscussionBoard.errors[10010251].message }}
    • Profile picture of the author KenWeiLL
      Originally Posted by KirkMcD View Post

      It's a png file but the extension has jpg.
      Try changing the extension to png.
      I did not write this webscript but for some unknown reason, when I upload a new logo, it automatically renames it to logo.jpg, even if the original file uploaded is mylogo.png.

      I tried renaming logo.jpg directly via Filezilla to logo.png but logo stopped working on all browsers. Renaming it back to logo.jpg made it work again, except on IE.

      [SOLVED]
      I renamed the file to logo.png and edit the PHP file that contains the header files which display the logo. Changed the code that says logo.jpg to logo.png.

      The upload part, I still can't find as to what part does it renames the file from anyfile.png renamed to logo.jpg.

      Could this be the code that automatically renames all uploaded logo to logo.jpg?
      Code:
      <tr>
              <td class="form_title" >Site Logo</td>
              <td><input type="file" name="fleLogo" />
                  <br />
                  <?php
                      echo "<img src='../media/logo.jpg?".date("y-d-m h:M")."' border='0' >" ;
                  ?>
              </td>
      </tr>
      How can I prevent it from renaming to logo.jpg?
      {{ DiscussionBoard.errors[10010297].message }}
  • Profile picture of the author KirkMcD
    Look for the php commands: rename or move_uploaded_file
    {{ DiscussionBoard.errors[10013339].message }}
    • Profile picture of the author KenWeiLL
      Originally Posted by KirkMcD View Post

      Look for the php commands: rename or move_uploaded_file
      Thanks.
      Found move_uploaded_file that renames any file uploaded to jpg.
      I want to post my solution with the code but for some reason, after pressing "Submit reply", my post won't get through.

      By the way, how do I mark this thread as solved?
      {{ DiscussionBoard.errors[10030798].message }}
  • Profile picture of the author yasar
    set logo as background image as specific div,then write css properties to background-size:100% 100%;it will be show all browser
    {{ DiscussionBoard.errors[10044302].message }}

Trending Topics