Closed
Bug 126710
Opened 24 years ago
Closed 21 years ago
noer.at - does not correctly display
Categories
(Tech Evangelism Graveyard :: German, defect, P3)
Tech Evangelism Graveyard
German
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: Biesinger, Unassigned)
References
()
Details
(Whiteboard: [eurocontest][havefix][havecontact] [proprietary-javascript])
The URL from above doesn't correctly display, there's too much spacing near the
top and the text doesn't scroll from right to left (uses document.layers).
Not sure if this should really be Europe:West, it's an austrian URL.
| Reporter | ||
Comment 1•24 years ago
|
||
displays wrong on linux too... os->all... though it probably has no meaning in
tech evang.
OS: Windows 98 → All
Comment 3•23 years ago
|
||
raising priority/severity. working on a fix.
Severity: normal → critical
Priority: -- → P2
Comment 4•23 years ago
|
||
first issue, the space between top and bottom, is resolved by adding this line
to http://www.noer.at/global.css :
td img { vertical-align: top; }
second issue is javascript related. I will attach a fix.
Whiteboard: [eurocontest] → [eurocontest][havefix]
Comment 5•23 years ago
|
||
corrected doanim function :
function doanim()
{
if(document.layers)
{ document.newsticker.left=x;
if(!w) w=document.newsticker.document.width; //+document.width/2;
if(!s) s=document.width/2
}
else if(document.all)
{ document.all.newsticker.style.left=x;
if(!w) w=1500;
if(!s) s=document.body.offsetWidth/3;
}
else if (document.getElementById)
{
document.getElementById('newsticker').style.left = x + "px";
if(!w) w=1500;
if(!s) s=document.getElementsByTagName('body')[0].offsetWidth/3;
}
x-=speed;
if(x<-w) x=s;
setTimeout("doanim()",delay);
}
this code isnt very good, as it will display a horizontal scrollbar (as it
already does with their code on IE/NS4).
we should point them to xbMarquee: http://bclary.com/xbProjects-docs/xbMarquee/
Comment 6•23 years ago
|
||
contact info anyone ?
| Reporter | ||
Comment 7•23 years ago
|
||
redaktion.online@noen.at seems to be their email address.... according to
http://www.noer.at/service/sitemap.shtm
maybe the noen is a typo and should be noer, I wouldn't know
Updated•23 years ago
|
Whiteboard: [eurocontest][havefix] → [eurocontest][havefix][havecontact]
Comment 8•23 years ago
|
||
can anyone contact them ?
Summary: http://www.noer.at/ does not correctly display → noer.at - does not correctly display
Severity: critical → major
Priority: P2 → P3
Hardware: PC → All
Whiteboard: [eurocontest][havefix][havecontact] → [eurocontest][havefix][havecontact] [proprietary-javascript]
Comment 9•22 years ago
|
||
move...
Assignee: nitot → german
Component: Europe: West → German
QA Contact: z-caillon-obsolete2 → german
Comment 10•22 years ago
|
||
Correct emailadress: redaktion.online@noen.at
noen is right (stands for NiederOEsterreichische Nachrichten), don't know why
they have the noer.at-domain too
Comment 11•21 years ago
|
||
noer.at appears to redirect to noen.at.
| Reporter | ||
Comment 12•21 years ago
|
||
oh, looks like they fixed this in the meantime.
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Updated•11 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•