Forum Replies Created

Viewing 3 replies - 46 through 48 (of 48 total)
  • Thread Starter SandyMcDonald

    (@sandymcdonald)

    Thank you so much for your help. That is exactly what happened.

    Thread Starter SandyMcDonald

    (@sandymcdonald)

    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(); ?>
    Thread Starter SandyMcDonald

    (@sandymcdonald)

    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?

Viewing 3 replies - 46 through 48 (of 48 total)