Nevermind that last post, figured out everything 🙂 Thanks again.
Yup… that was the problem, thanks a lot 🙂
Just having one last problem, at the end of my index.php is;
<?php get_footer(); ?>
But the footer doesn’t show up for some reason, anything I’m doing wrong here? Here’s my full footer.php;
<div id="footer">
<div id="container_f">
<div id="f_logo"><a href="index.htm"><img src="images/footer_l.png" alt="" width="42" height="59" border="0" /></a></div>
<div class="style3" id="f_copyright"><?php bloginfo('name'); ?>. <?php the_time('Y'); ?>.<br />
All rights reserved.</div>
<div class="style3" id="f_nav"><a href="index.htm" class="class2">Home</a> | <a href="portfolio.htm" class="class2">Portfolio</a> | <a href="services.htm" class="class2">Services</a> | <a href="testimonials.htm" class="class2">Testimonials</a> | <a href="about.htm" class="class2">About</a> | <a href="contact.htm" class="class2">Contact</a></div>
</div>
</div>
<?php wp_footer(); ?>
</center>
</body>
</html>
Thanks for the help, really appreciate your time.