Re:About NOSCRIPT positionning
[This followup was posted to alt.html and a copy was sent to the cited
author.]
In article <
s5r980pdjrn6qe7j6g7b5cgtifrfbgdufu@4ax.com>,
steve@pugh.net
says...
Quote
natric <natricity@free.fr>wrote:
Quote
[This followup was posted to alt.comp.lang.javascript and a copy was sent to the cited author.]
Was your message a followup to another post? If so I didn't see it,
and there was no References header.
And you've screwed your Followup-To header. (Followup-To:
natricity.free.fr/thread_about_noscript_position/noscript_position.html)
Effectively, this is not a real follow-up, but I did-it just to be able
to cross post from Gravity.
Quote
(My server has also never heard of alt.comp.lang.javascript and
neither has Google, does it exist? or did you mean
comp.lang.javascript?)
No no, it exist and is reachable from news.free.fr
Quote
I'm trying to position a noscript warning using html table tag (this to
be sure it's well visible from within the rest of the page which is
build through css style positionning capabilities), but encounter some
problem from browser to browser. When right under IE6, wrong under NN7,
Mozilla and Opera. How to do ?
You have an sbsolutely positioned div containing a table that contains
a document.write; and then after the div you have another table that
contains a noscript element.
It is pure fluke that the document.write and the noscript place their
content in the same place in any browser. You're mixing CSS absolute
positioning and HTML layout tables (spit) and expecting them to line
up across browsers. Not a chance.
Well, I agree, but then how do you show the noscript warning when the
rest of the page is css oriented ; I mean the noscript has not any
chance to be visible just because masked by others elements with a
higher z-index. By design, doesn't a noscript tag content should be pure
html (i.e. without any style) ?
Put the noscript element immediately after the script element and use
CSS to suggest the presentation you want.
Something like:
steve.pugh.net/test/natric.html
Effectively, I didn't figured this going through this way (stupid guy ;
isn't it ;)) It's so easy to write it down at place I want it in the