Quote:
Originally Posted by MrNase
Some things I noticed:
The popup is misaligned with Opera.. It's too far down on the website.
|
I just installed the pager but I'm using opera too, so there had to be a solution.
I added an if condition to the PAGER template below
Code:
else if (w3)
{
documentWidth=self.innerWidth/2+window.pageXOffset-20;
documentHeight=self.innerHeight/2+window.pageYOffset-20;
}
Code:
if (navigator.userAgent.toLowerCase().indexOf("opera") != -1)
{
documentWidth=self.innerWidth/2+window.pageXOffset-20;
documentHeight=self.innerHeight/2+window.pageYOffset-20;
}
This is working for me - I tried it also with 'Identify as IE' within opera which was working too...
The problem is that
Code:
var ie=(document.all);
is true for opera but
Code:
if (ie)
{
documentWidth =truebody().offsetWidth/2+truebody().scrollLeft-20;
documentHeight =truebody().offsetHeight/2+truebody().scrollTop-50;
}
doesn't work with the browser...