Sorry for the newb issue - boss set me out to fix an issue on our website.
The following index starts out with a “get_header” (the header file is attached below) and instead of taking that file and doing what it says, it just prints it out above the rest of the website which ruins the whole layout and CSS. Any help is greatly appreciated.
index.php
[php]<?php get_header(); ?>
','
'); ?><?php the_title(); ?>
<div class="storycontent">
<?php the_content(__('(more...)')); ?>
</div>
<div class="feedback">
<?php wp_link_pages(); ?>
<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
</div>
<?php _e('Sorry, no posts matched your criteria.'); ?>
<?php endif; ?> <?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?>[/php]
header.php
[php]> ‘monthly’, ‘format’ => ‘link’)); ?> >
‘Top Menu’,‘container_id’=>‘topmenu’)); ?>
[/php]
Thank you! thank you! thank you!