elitist
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Header Image Link and Sidebar IssuesFor anybody else out there having the same trouble I had – I was able to accomplish the same thing by opening up header.php and adding the code from Kubrick’s FAQ minus the </div> at the end. I am not a programmer so if this is wrong I hope somebody will correct me or you will at least not hold me responsible – I just know it worked for me.
Forum: Fixing WordPress
In reply to: Header Image Link and Sidebar IssuesI opened up my index.php to make these changes and I swear <div id=”header”> is not a part of the code. If it is in there please tell me WHERE (I looked 10 times and couldn’t find it). If it isn’t any ideas why not and is there still a way to make my header a link? Thanks and here’s what my index.php looks like:
<?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post”>
<h2 id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></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 »’); ?>
</div><p class=”postmetadata”>Posted in <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’,”,’|‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
<!–
<?php trackback_rdf(); ?>
–>
</div><?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php posts_nav_link(”,”,’« Previous Entries’) ?></div>
<div class=”alignright”><?php posts_nav_link(”,’Next Entries »’,”) ?></div>
</div><?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”><?php _e(“Sorry, but you are looking for something that isn’t here.”); ?>
<?php include (TEMPLATEPATH . “/searchform.php”); ?><?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>