|
Rank: Advanced Member Groups: Member
Joined: 10/20/2008 Posts: 75
|
Hello, When I insert a menu in the page and I choose the template, then I run the page, return to me an error:
An alert with te text: "Impossible opening the web site http:/localhost:2875/"
!!!
|
|
Rank: Advanced Member Groups: Member
Joined: 10/20/2008 Posts: 75
|
the menu is in a master page. thanks
|
|
Rank: Advanced Member Groups: Member
Joined: 10/20/2008 Posts: 75
|
The page is load correctly and I view the page with the menu inside, but after is show the message above.
|
|
Rank: Advanced Member Groups: Member
Joined: 10/20/2008 Posts: 75
|
can you help me? thanks!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We are not aware of any problem like that. Can you try it on another machine or with another browser?
If the problem continues, please put the page online and we will be happy to take a look.
Thanks
|
|
Rank: Advanced Member Groups: Member
Joined: 10/20/2008 Posts: 75
|
the problem is that in the page i have the lightbox javascript. if i delete the lightbox it runs correctly.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We have reproduced the problem with LightBox. We will look into it and see what we can do. There is no guarantee though as the problem might be in LightBox and we have merely triggered it.
Thanks!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, We have looked into the LightBox issue and have found a workaround. You will need to modify LightBox.js as follow: 1. Open LightBox.js with a text editor, scroll to the bottom of the file, you should see:
Code: JavaScript
document.observe('dom:loaded', function ()
{
new Lightbox();
});
2. Change that to:
Code: JavaScript
document.observe('dom:loaded', function ()
{
setTimeout(function()
{
new Lightbox();
}, 0);
});
That delays lightbox initialization code and it should resolve the issue. The above code is based on LightBox 2. Thanks!
|
|
Rank: Advanced Member Groups: Member
Joined: 10/20/2008 Posts: 75
|
thank you very much!!!
|
|