|
Posted by Jonathan N. Little on 09/07/06 15:43
Gernot Frisch wrote:
>> That one's easy, MSIE's miserable PNG support:
>>
>> http://www.google.com/search?hl=en&sa=X&oi=spell&resnum=0&ct=result&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.
>
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>
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|