popover.php
16 lines
| 1 | <div id='darkbackground' style='<?php echo $backgroundstyle; ?>'> |
| 2 | <div id='<?php echo $popover_messagebox; ?>' class='visiblebox' style='<?php echo $style; ?>'> |
| 3 | <a href='' id='closebox' title='Close this box'></a> |
| 4 | <div id='message' style='<?php echo $box; ?>'> |
| 5 | <?php echo do_shortcode($popover_content); ?> |
| 6 | <div class='clear'></div> |
| 7 | <?php if($popover_hideforever != 'yes') { |
| 8 | ?> |
| 9 | <div class='claimbutton hide'><a href='#' id='clearforever'><?php _e('Never see this message again.','popover'); ?></a></div> |
| 10 | <?php |
| 11 | } |
| 12 | ?> |
| 13 | </div> |
| 14 | <div class='clear'></div> |
| 15 | </div> |
| 16 | </div> |