• My blog is at this link: http://allegro-vivo.net/compose

    Notice how everything is in the table with a scrollbar on the right hand side.

    When I click on the link for the comments, it takes me to the comments page. The comments remained in the table but if you scroll up, the post is there and out of the table. How do I fix that?

    My code for comments.php is the following:

    <html>
    <head><link rel="stylesheet" type="text/css" href="../inc/style.css"><?php include("../inc/title.inc"); ?>
    </head>
    <body><center>
    
    <table border="0" cellpadding="0" cellspacing="0" width="1038" style="background-color: black;">
    
       <tr>
    	<td width="519"><?php include("../inc/left.inc"); ?></td>
    	<td width="519" style="background-image:url(http://allegro-vivo.net/inc/bg.gif); background-repeat: repeat-y; padding-left: 10px; padding-top: 10px; padding-bottom: 0px;">
    <div id="main">
    
    <?php
    /*     This is comment.phps by Christian Montoya, http://www.christianmontoya.com 
    
        Available to you under the do-whatever-you-want license. If you like it,
        you are totally welcome to link back to me.  
    
        Use of this code does not grant you the right to use the design or any of the
        other files on my site. Beyond this file, all rights are reserved, unless otherwise noted.  
    
        Enjoy!
    */
    ?> 
    
    <!-- Comments code provided by christianmontoya.com --> 
    
    <?php if (!empty($post->post_password) && $_COOKIE['wp-postpass_'.COOKIEHASH]!=$post->post_password) : ?>
        <p id="comments-locked">Enter your password to view comments.</p>
    <?php return; endif; ?> 
    
    <?php if (pings_open()) : ?>
        <p id="respond"><span id="trackback-link">
            <a href="<?php trackback_url() ?>" rel="trackback">Get a Trackback link</a>
        </span></p>
    <?php endif; ?> 
    
    <?php if ($comments) : ?> 
    
    <?php  
    
        /* Author values for author highlighting */
        /* Enter your email and name as they appear in the admin options */
        $author = array(
                "highlight" => "highlight",
                "email" => "YOUR EMAIL HERE",
                "name" => "YOUR NAME HERE"
        );  
    
        /* Count the totals */
        $numPingBacks = 0;
        $numComments  = 0; 
    
        /* Loop throught comments to count these totals */
        foreach ($comments as $comment) {
            if (get_comment_type() != "comment") { $numPingBacks++; }
            else { $numComments++; }
        } 
    
        /* Used to stripe comments */
        $thiscomment = 'odd';
    ?> 
    
    <?php 
    
        /* This is a loop for printing pingbacks/trackbacks if there are any */
        if ($numPingBacks != 0) : ?> 
    
        <h2 class="comments-header"><?php _e($numPingBacks); ?> Trackbacks/Pingbacks</h2>
        <ol id="trackbacks"> 
    
    <?php foreach ($comments as $comment) : ?>
    <?php if (get_comment_type()!="comment") : ?> 
    
        <li id="comment-<?php comment_ID() ?>" class="<?php _e($thiscomment); ?>">
        <?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?>:
        <?php comment_author_link(); ?> on <?php comment_date(); ?>
        </li> 
    
        <?php if('odd'==$thiscomment) { $thiscomment = 'even'; } else { $thiscomment = 'odd'; } ?> 
    
    <?php endif; endforeach; ?> 
    
        </ol> 
    
    <?php endif; ?> 
    
    <?php  
    
        /* This is a loop for printing comments */
        if ($numComments != 0) : ?> 
    
        <h2 class="comments-header"><?php _e($numComments); ?> Comments</h2>
        <ol id="comments"> 
    
        <?php foreach ($comments as $comment) : ?>
        <?php if (get_comment_type()=="comment") : ?> 
    
            <li id="comment-<?php comment_ID(); ?>" class="<?php  
    
            /* Highlighting class for author or regular striping class for others */ 
    
            /* Get current author name/e-mail */
            $this_name = $comment->comment_author;
            $this_email = $comment->comment_author_email; 
    
            /* Compare to $author array values */
            if (strcasecmp($this_name, $author["name"])==0 && strcasecmp($this_email, $author["email"])==0)
                _e($author["highlight"]);
            else
                _e($thiscomment);  
    
            ?>">
                <div class="comment-meta">
    <?php /* If you want to use gravatars, they go somewhere around here */ ?>
                    <span class="comment-author"><?php comment_author_link() ?></span>,
                    <span class="comment-date"><?php comment_date() ?></span>:
                </div>
                <div class="comment-text">
    <?php /* Or maybe put gravatars here. The typical thing is to float them in the CSS */
        /* Typical gravatar call:
            <img src="<?php gravatar("R", 80, "YOUR DEFAULT GRAVATAR URL"); ?>"
            alt="" class="gravatar" width="80" height="80">
        */ ?>
                    <?php comment_text(); ?>
                </div>
            </li> 
    
        <?php if('odd'==$thiscomment) { $thiscomment = 'even'; } else { $thiscomment = 'odd'; } ?> 
    
        <?php endif; endforeach; ?> 
    
        </ol> 
    
        <?php endif; ?> 
    
    <?php else :  
    
        /* No comments at all means a simple message instead */
    ?> 
    
        <h2 class="comments-header">No Comments Yet</h2> 
    
        <p>You can be the first to comment!</p> 
    
    <?php endif; ?> 
    
    <?php if (comments_open()) : ?> 
    
    <?php /* This would be a good place for live preview...
        <div id="live-preview">
            <h2 class="comments-header">Live Preview</h2>
            <?php live_preview(); ?>
        </div>
     */ ?> 
    
        <div id="comments-form"> 
    
        <h2 id="comments-header">Leave a comment</h2> 
    
        <?php if (get_option('comment_registration') && !$user_ID ) : ?>
            <p id="comments-blocked">You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=
            <?php the_permalink(); ?>">logged in</a> to post a comment.</p>
        <?php else : ?> 
    
        <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> 
    
        <?php if ($user_ID) : ?> 
    
        <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php">
            <?php echo $user_identity; ?></a>.
            <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout"
            title="Log out of this account">Logout</a>
        </p> 
    
        <?php else : ?> 
    
            <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" />
            <label for="author">Name<?php if ($req) _e(' (required)'); ?></label></p> 
    
            <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" />
            <label for="email">E-mail (will not be published)<?php if ($req) _e(' (required)'); ?></label></p> 
    
            <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" />
            <label for="url">Website</label></p> 
    
        <?php endif; ?> 
    
        <?php /* You might want to display this:
            <p>XHTML: You can use these tags: <?php echo allowed_tags(); ?></p> */ ?> 
    
            <p><textarea name="comment" id="comment" rows="5" cols="30"></textarea></p> 
    
            <?php /* Buttons are easier to style than input[type=submit],
                    but you can replace:
                    <button type="submit" name="submit" id="sub">Submit</button>
                    with:
                    <input type="submit" name="submit" id="sub" value="Submit" />
                    if you like */
            ?>
            <p><button type="submit" name="submit" id="sub">Submit</button>
            <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>"></p> 
    
        <?php do_action('comment_form', $post->ID); ?> 
    
        </form>
        </div> 
    
    <?php endif; // If registration required and not logged in ?> 
    
    <?php else : // Comments are closed ?>
        <p id="comments-closed">Sorry, comments for this entry are closed at this time.</p>
    <?php endif; ?>
    
    </div></td>
       </tr>
    
    <tr><td colspan="2" style="background-color: black;">
    <?php include("../inc/bottom.inc"); ?></td>
       </tr>
    
    </table>
    
    </body>
    </html>

    My code for the index page is as follows:

    <div id="content" class="narrowcolumn">
    
    <html>
    <head><link rel="stylesheet" type="text/css" href="../inc/style.css"><?php include("../inc/title.inc"); ?>
    </head>
    <body><center>
    
    <table border="0" cellpadding="0" cellspacing="0" width="1038" style="background-color: black;">
    
       <tr>
    	<td width="519"><?php include("../inc/left.inc"); ?></td>
    	<td width="519" style="background-image:url(http://allegro-vivo.net/inc/bg.gif); background-repeat: repeat-y; padding-left: 10px; padding-right: 58px; padding-top: 10px; padding-bottom: 0px;">
    <div id="main">
    
    	<?php if (have_posts()) : ?>
    		<?php while (have_posts()) : the_post(); ?>
    
    			<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
    				<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
    				<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
    
    				<div class="entry">
    					<?php the_content('Read the rest of this entry &raquo;'); ?>
    				</div>
    
    				<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
    			</div>
    
    		<?php endwhile; ?>
    
    		<div class="navigation">
    			<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
    			<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
    		</div>
    
    	<?php else : ?>
    
    		<h2 class="center">Not Found</h2>
    		<p class="center">Sorry, but you are looking for something that isn't here.</p>
    		<?php get_search_form(); ?>
    
    	<?php endif; ?>
    
    </div>
    </td>
       </tr>
    
    <tr><td colspan="2" style="background-color: black;">
    <?php include("../inc/bottom.inc"); ?></td>
       </tr>
    
    </table>
    
    </body>
    </html>

    Thank you very much!

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘HTML Table Trouble’ is closed to new replies.