Thank you for your reply.
I tried to copy the css file into Front Page but just got a load of words. Do I download it from FileZilla (from the theme file)to my desktop? and then load it into Front Page?
HERE IS THE FOOTER.PHP
</div>
<?php
if (is_active_sidebar(‘first-footer-widget-area’) ||
is_active_sidebar(‘second-footer-widget-area’) ||
is_active_sidebar(‘third-footer-widget-area’) ||
is_active_sidebar(‘fourth-footer-widget-area’)
) {
?>
<div id=”footer” role=”contentinfo”>
<div id=”colophon”>
<?php
get_sidebar(‘footer’);
?>
</div>
<table id=”clearstyle-subfooter”><tr>
<td id=”clearstyle-subfooter-left”>© <?php echo date(‘Y’); ?> ” title=”<?php echo esc_attr(get_bloginfo(‘name’, ‘display’)); ?>” rel=”home”><?php bloginfo(‘name’); ?></td>
<td id=”clearstyle-subfooter-right”>Powered by WordPress | Theme creation by paomedia</td>
</tr></table>
</div>
<?php } ?>
</div>
<?php
wp_footer();
?>
</body>
</html>
MAIN INDEX PHP (index.php)
<?php get_header(); ?>
<div id=”container”>
<div id=”content” role=”main”>
<?php
get_template_part(‘loop’, ‘index’);
?>
</div>
</div>
<?php get_footer(); ?>
COMMENTS.PHP
<div class=”clearstyle-b-container”>
<div id=”comments”>
<?php if (post_password_required ()) : ?>
<p class=”nopassword”><?php _e(‘This post is password protected. Enter the password to view any comments.’, ‘clearstyle’); ?></p>
</div><!– #comments –>
<?php
return;
endif;
?>
<?php if (have_comments ()) : ?>
<h3 id=”comments-title”><?php
printf(_n(‘One Response to %2$s’, ‘%1$s Responses to %2$s’, get_comments_number(), ‘clearstyle’),
number_format_i18n(get_comments_number()), ‘‘ . get_the_title() . ‘‘);
?></h3>
<?php if (get_comment_pages_count() > 1 && get_option(‘page_comments’)) : ?>
<div class=”navigation”>
<div class=”nav-previous”><?php previous_comments_link(__(‘<span class=”meta-nav”>←</span> Older Comments’, ‘clearstyle’)); ?></div>
<div class=”nav-next”><?php next_comments_link(__(‘Newer Comments <span class=”meta-nav”>→</span>’, ‘clearstyle’)); ?></div>
</div>
<?php endif; ?>
<ol class=”commentlist”>
<?php
wp_list_comments(array(‘callback’ => ‘clearstyle_comment’));
?>
<?php if (get_comment_pages_count() > 1 && get_option(‘page_comments’)) : ?>
<div class=”navigation”>
<div class=”nav-previous”><?php previous_comments_link(__(‘<span class=”meta-nav”>←</span> Older Comments’, ‘clearstyle’)); ?></div>
<div class=”nav-next”><?php next_comments_link(__(‘Newer Comments <span class=”meta-nav”>→</span>’, ‘clearstyle’)); ?></div>
</div>
<?php
endif;
else :
if (!comments_open()) :
?>
<p class=”nocomments”><?php _e(‘Comments are closed.’, ‘clearstyle’); ?></p>
<?php
endif;
endif;
comment_form();
?>
</div>
</div>
Again, thank you for the help. I am very grateful.