images missing, submit is dead (IE)

J

Jonathan N. Little

Gernot said:
In this page:
http://www.bibelchristen.de/quiz.php?topic=papst

There's a problem with my images. Firefox looks good, IE6 looks
"naked".

That one's easy, MSIE's miserable PNG support:

http://www.google.com/search?hl=en&...t&cd=1&q=MSIE+png+alpha+transparency+&spell=1
MSIE png alpha transparency - Google Search
Also the submit button is dead. I typed it like:

<form name="test" action="quiz.php?topic=papst" method="post">
...
</form>

Not sure, don't have time to debug for you. You do have a few markup
errors but not too serious.

One question though, if you sending by POST why put a query string
parameter in your form's action? Not better to transmit by POST as well?

<form name="test" action="quiz.php" method="post">
<input hype=hidden" name="topic" value="papst">
....
 
G

Gernot Frisch

That one's easy, MSIE's miserable PNG support:

http://www.google.com/search?hl=en&...t&cd=1&q=MSIE+png+alpha+transparency+&spell=1
MSIE png alpha transparency - Google Search

I use the exact same images on www.glbasic.com - they work.

One question though, if you sending by POST why put a query string
parameter in your form's action? Not better to transmit by POST as
well?

Because I want the quiz-topic to be linkable, so you can have several
topics with my quiz script and send liks to them to friends.
Thank you so far.
 
J

Jonathan N. Little

Gernot said:
I use the exact same images on www.glbasic.com - they work.



Because I want the quiz-topic to be linkable, so you can have several
topics with my quiz script and send liks to them to friends.
Thank you so far.

Hmm, path problem? When I downloaded your page with gfx it does display
in IE! Most likely a floated element whacking IE, IE can be touchy with
floats... My advice is to strip down to minimal and build back and test
in IE to locate the bug. Tedious, but works.

On another note however your DOCTYPE is set strict (GOOD) but your
coding style is transitional in places (BAD)

<body alink="blue" bgcolor="white" link="blue" text="black"
vlink="blue">

change to CSS:

BODY { color: black; background-color: white; }
A:link, A:visited, A:active {color: blue; }

HTML: <body>

and
<table border="0" cellpadding="0" cellspacing="0" height="100%"
width="100%">

change to CSS:

TABLE { border-collapse: collapse; width: 100% height: 100%; }

HTML: <table>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,586
Members
45,084
Latest member
HansGeorgi

Latest Threads

Top