SandyMcDonald
Forum Replies Created
-
Thank you so much for your help. That is exactly what happened.
Below are excerpts from the page.php and single.php files. Do you see any problem with the code below?
From page.php
<div class="content-bar"> <?php if (have_posts()) : the_post(); ?> <?php the_content(); ?> <?php wp_link_pages(array('before' => '<div class="clear"></div><div class="page-link"><span>' . __('Pages:', 'andrina-lite') . '</span>', 'after' => '</div>')); ?> <?php endif; ?>
From single.php
<div class="content-bar"> <!-- Start the Loop. --> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <!--post Start--> <div class="post"> <h1 class="post_title"><a>" rel="bookmark" title="<?php printf( esc_attr__( 'Permalink to %s', 'andrina-lite' ), the_title_attribute( 'echo=0' ) ); ?>"><?php the_title(); ?></a></h1> <ul class="post_meta"> <li class="post_date"><?php the_date(); ?> <li class="post_category"><span>/??<?php _e('Category','andrina-lite'); ?></span>?<?php the_category(', '); ?> <li class="posted_by"><span>/??</span><?php _e('Posted By','andrina-lite'); ?>?<?php the_author_posts_link(); ?> <li class="postc_comment"><span>/??</span>?<?php comments_popup_link(__('No Comments.','andrina-lite'), __('1 Comment.','andrina-lite'), __('% Comments.','andrina-lite')); ?> <div class="post_content"> <?php the_content(); ?>
Thank you very much for your prompt response.
I made all the code changes suggested above in the style.css file.
For some reason, it did not change the behavior at all.
What should I try now?