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