help rmoving remnants of popup box code
i need help. i removed a line of code i knew was the main source of the popup happening i needed removed from a site, but there is remnants of code left and i am wandering what all is leftover and needs removed i have the line marked where the code for popup started, further down is the text that was in the popup, so i know it goes that far down, i just do not know if there is anything in between that i shouldnt remove that does not have to do with the popup code.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?></title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<style type="text/css" media="screen">
<?php
// Checks to see whether it needs a sidebar or not
if ( empty($withcomments) && !is_single() ) {
?>
#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/bg-page.png") repeat-y top; border: none; }
<?php } else { // No sidebar ?>
#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/bg-single.png") repeat-y top; border: none; }
<?php } ?>
</style>
REMOVED LINE HERE
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php if (is_front_page()):?>
<script type="text/javascript">
$(document).ready(function() {
$("#facebox").overlay({
top: 272,
expose: {
color: '#fff',
loadSpeed: 200,
opacity: 0.5
},
closeOnClick: false,
api: true
}).load();
});
</script>
<?php endif;?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php if (is_front_page()):?>
<div id="facebox">
<div>
<h2></h2>
<p>Welcome!</p>
<p><strong>Heal Your Relationship Space Meditation is now avail.</strong></p>
<p>Click on the Products tab above to learn more.</p>
<p>I am currently in Los Angeles.</p>
<p>Please sign up on my mailing list</p>
<p>for future reading specials.</p>
<p>See you soon!</p>
<form name="ccoptin" action="http://visitor.constantcontact.com/d.jsp" rel="nofollow" target="_blank" method="post" style="margin-bottom:3;">
<label>Email Address:</label> <input type="text" name="ea" size="24" value="" style="font-family: Arial; font-size:10px; border:1px solid #999999;padding:3px;"> <input type="submit" name="go" value="Join" class="submit" style="font-family:Arial,Helvetica,sans-serif; font-size:11px;">
<input type="hidden" name="m" value="1101289298488">
<input type="hidden" name="p" value="oi">
</form>
<p style="color:#666">To close, click the Close button or hit the ESC key.</p>
<!-- yes/no buttons -->
<p>
<button class="close"> Close </button>
</p>
</div>
</div>
<?php endif;?>
<div id="page">
<div id="header" role="banner">
<!-- replacing
<div id="headerimg">
<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<div class="description"><?php bloginfo('description'); ?></div>
</div> -->
|