calendarxp Site Admin
Joined: 30 Jan 2005 Posts: 409
|
Posted: Tue Feb 15, 2005 6:42 pm Post subject: [PopCalendarXP]The calendar is obscured by another iframe in the same page when browsing with Opera 7, what's wrong? |
|
|
Opera 7 seems to have a z-index bug and layer the iframe objects only by loading sequence. To work around, simply move the calendar iframe tag from the page bottom to page top, as following:
Code: | <BODY>
<iframe width=174 height=189 name="gToday:normal:agenda.js" id="gToday:normal:agenda.js" src="ipopeng.htm" scrolling="no" frameborder="0" style="visibility:visible; z-index:999; position:absolute; top:-500px; left:-500px;">
</iframe>
...
... your html page contents ...
...
<LAYER name="gToday:normal:agenda.js" src="npopeng.htm"> </LAYER>
</BODY> |
NOTE that you shouldn't move the <LAYER> calendar tag, otherwise NN4 will fail.
_________________ Copyright 2003-2011 Idemfactor Solutions, Inc. All rights reserved. |
|