I've been having trouble with the website I'm developing. My Site looks fine in firefox, opera, chrome and safari but completely fails to display the link buttons at the top of each page completely fail to display themselves in internet explorer.
Has anyone an explaination for this? Maybe PNG is not supported i IE for some reason?
Offline
But I'm trying to get it to work! As ridiculous as IE is, it's one of the most used browsers because it's distributed with every PC and most people think that it IS the internet and there is no other option.
Offline
What site? Let me power up IE for the first time...
Offline
Problem = IE is - well, I really don't want to get banned again so I won't say it.
Solution = Firefox
Offline
Not many people like IE anyway. IE's sole purpose is to download other browsers.
Just my views, anyway. It's the most widely used browser though...
Last edited by tomicool (2011-05-26 14:03:22)
Offline
Alternatives wrote:
Problem = IE is a failure.
Solution = Firefox
Offline
scimonster wrote:
Alternatives wrote:
Problem = IE is a failure.
Solution = Firefox
That's sugercoating it.
Last edited by Alternatives (2011-05-26 14:15:34)
Offline
Alternatives wrote:
scimonster wrote:
Alternatives wrote:
Problem = IE is a failure.
Solution = FirefoxThat's sugercoating it.
I know. I'm using the nicest text I can about that piece of....
Last edited by scimonster (2011-05-26 14:41:31)
Offline
IE is okay, I'm using it right now XD
Offline
sparks wrote:
Has anyone an explanation for this? Maybe PNG is not supported in IE for some reason?
No, PNGs show in IE.
Offline
scimonster wrote:
sparks wrote:
Has anyone an explanation for this? Maybe PNG is not supported in IE for some reason?
No, PNGs show in IE.
Its the truth. IT just doesn't work. Thats why you should use Firefox.
Offline
I completely agree that it is a useless browser and the only thing it's good for is downloading other browsers but as I said, a lot of people don't know there is something better and I am funnily enough attempting to advertise my site to the majority. Does anyone know what's going on? Here's the code:
<div id= "topBar"> <center> <div><a href="index.php"><img alt="HOME" border=0 src="home.png" style="margin-right:15px;"/></a> <a href="about us.php"><img border=0 alt="ABOUT US" src="aboutus.png" style="margin-right:15px;"/></a> <a href="games.php"><img alt="GAMES" border=0 src="games.png" style="margin-right:15px;"/></a> <a href="videos.php"><img alt="VIDEOS" border=0 src="videos.png" style="margin-right:15px;"/></a> <a href="comics.php"><img alt="COMICS" border=0 src="comics.png" style="margin-right:15px;"/></a> <a href="register.php"><img alt="REGISTER" border=0 src="register.png" style="margin-right:15px;"/></a> <a href="donate.php"><img alt="DONATE" border=0 src="donate.png" /></a></div> </center> </div>
The fact that the full URL is not given cannot be the problem, there is another png on this site - also without the full URL that displays fine and is in the same FTP folder as the buttons.
Last edited by sparks (2011-05-26 14:53:54)
Offline
sparks wrote:
I completely agree that it is a useless browser and the only thing it's good for is downloading other browsers but as I said, a lot of people don't know there is something better and I am funnily enough attempting to advertise my site to the majority. Does anyone know what's going on? Here's the code:
Code:
<div id= "topBar"> <center> <div><a href="index.php"><img alt="HOME" border=0 src="home.png" style="margin-right:15px;"/></a> <a href="about us.php"><img border=0 alt="ABOUT US" src="aboutus.png" style="margin-right:15px;"/></a> <a href="games.php"><img alt="GAMES" border=0 src="games.png" style="margin-right:15px;"/></a> <a href="videos.php"><img alt="VIDEOS" border=0 src="videos.png" style="margin-right:15px;"/></a> <a href="comics.php"><img alt="COMICS" border=0 src="comics.png" style="margin-right:15px;"/></a> <a href="register.php"><img alt="REGISTER" border=0 src="register.png" style="margin-right:15px;"/></a> <a href="donate.php"><img alt="DONATE" border=0 src="donate.png" /></a></div> </center> </div>
It might be the <center> tag. I've never even seen it before... :S
Offline
<center> centers all the content of the tag.
w3schools wrote:
The <center> tag is supported in all major browsers. However, it is deprecated and should be avoided!
So even though it is deprecated it is still supported by IE and functions in other parts of my site.
Offline
sparks wrote:
<center> centers all the content of the tag.
w3schools wrote:
http://www.w3schools.com/images/compatible_ie.gifhttp://www.w3schools.com/images/compatible_firefox.gifhttp://www.w3schools.com/images/compatible_opera.gifhttp://www.w3schools.com/images/compatible_chrome.gifhttp://www.w3schools.com/images/compatible_safari.gif
The <center> tag is supported in all major browsers. However, it is deprecated and should be avoided!So even though it is deprecated it is still supported by IE and functions in other parts of my site.
What about the border attr? Shouldn't you put that in the style attr?
Offline
Nope. image tags do not need a style attribute, they take all their commands individually within the opening tag for some reason.
<img border="0" src="smiley.gif" alt="HTML tutorial" width="32" height="32" />
Offline
sparks wrote:
Nope. image tags do not need a style attribute, they take all their commands individually within the opening tag for some reason.
Code:
<img border="0" src="smiley.gif" alt="HTML tutorial" width="32" height="32" />
But you gave it a style attribute....
Offline
The_Dancing_Donut wrote:
IE is okay, I'm using it right now XD
[info] Error #314
It has been detected your computer has Internet Explorer. Delete it right now, but stay with Windows.
^ Exactly, I use Firefox too.
Offline
Did you try this?
<div id= "topBar"> <div align="center"> <div><a href="index.php"><img alt="HOME" border=0 src="home.png" style="margin-right:15px;"/></a> <a href="about us.php"><img border=0 alt="ABOUT US" src="aboutus.png" style="margin-right:15px;"/></a> <a href="games.php"><img alt="GAMES" border=0 src="games.png" style="margin-right:15px;"/></a> <a href="videos.php"><img alt="VIDEOS" border=0 src="videos.png" style="margin-right:15px;"/></a> <a href="comics.php"><img alt="COMICS" border=0 src="comics.png" style="margin-right:15px;"/></a> <a href="register.php"><img alt="REGISTER" border=0 src="register.png" style="margin-right:15px;"/></a> <a href="donate.php"><img alt="DONATE" border=0 src="donate.png" /></a></div> </div> </div>
Offline
meew0 wrote:
Did you try this?
Code:
<div id= "topBar"> <div align="center"> <div><a href="index.php"><img alt="HOME" border=0 src="home.png" style="margin-right:15px;"/></a> <a href="about us.php"><img border=0 alt="ABOUT US" src="aboutus.png" style="margin-right:15px;"/></a> <a href="games.php"><img alt="GAMES" border=0 src="games.png" style="margin-right:15px;"/></a> <a href="videos.php"><img alt="VIDEOS" border=0 src="videos.png" style="margin-right:15px;"/></a> <a href="comics.php"><img alt="COMICS" border=0 src="comics.png" style="margin-right:15px;"/></a> <a href="register.php"><img alt="REGISTER" border=0 src="register.png" style="margin-right:15px;"/></a> <a href="donate.php"><img alt="DONATE" border=0 src="donate.png" /></a></div> </div> </div>
And, to make it display the current on Firefox while showing correctly on IE, do this on Javascript:
if (browserType == "firefox")
firefox script to add content
end if
and more if you want.
Offline