Advertisement
Guest User

Why is my CalendarExtender getting overlapped when rendered

a guest
Feb 28th, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. .ajax__calendar_container { z-index : 1000 ; }
  2.  
  3. <style type="text/css">
  4. .ajax__calendar_container { z-index : 1000 ; }
  5. </style>
  6.  
  7. .ajax__calendar {
  8. position: relative;
  9. left: 0px !important;
  10. top: 0px !important;
  11. visibility: visible; display: block;
  12. }
  13. .ajax__calendar iframe
  14. {
  15. left: 0px !important;
  16. top: 0px !important;
  17. }
  18.  
  19. <fieldset> some content... including ajax popup </fieldset>
  20. <fieldset> some more content </fieldset>
  21.  
  22. <fieldset style="z-index: 2;"> some content... including ajax popup </fieldset>
  23. <fieldset style="z-index: 1;"> some more content </fieldset>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement