0

I have an iframe that displays a full page from any website. The trouble is now that it makes all the links inside frame disabled(unlickable). I have few chunks of Javascript and CSS in it. I am not sure what is really causing the issue.

*link removed

Can someone help me out please.

4

2 回答 2

5

The problem is the width on your .pageContainer (Its actually sitting on top of the iFrame)

.pageContainer {  
    position: fixed;  
    width: 100%;  <-- your problem here [line 88]
    height: 100%;  
}
于 2013-03-18T13:54:53.173 回答
2

You are overlaying a DIV on the iFrame itself. Don't put that DIV in a fixed position.

于 2013-03-18T13:56:21.763 回答