Ok quick update. I added in the following code:
<div id="footer-sidebar" class="secondary">
<div id="footer-sidebar1">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?>
<?php endif; ?>
</div>
<div id="footer-sidebar2">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(3) ) : ?>
<?php endif; ?>
</div>
<div id="footer-sidebar3">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(4) ) : ?>
<?php endif; ?>
</div>
</div>
<div style="clear-both"></div>
Which seems to have fixed it, but added an Archive and Comments section to the main page. What would I have to do to remove it?
UPDATE: I see, it’s a widget issue. I removed them and added tags, but would ideally like the page to look like that without the widgets. Anyway around this?
Thanks