Hi,
I've been trying to edit a theme for the last couple of days but with no luck, I'm using this theme:
on my site:
http://valour-international.com/wordpress/
what I wanted to do is extend the Home content box of the site so I can split it up into two boxes and divide it with a gold line, the left side for news and the right side for the welcome message.I was thinking perhaps I could use tables or something to create 3 tables 30% for news 5% for golden separation line and 65% for main welcome content but idk how to do that.This is my index.php file:
<?php get_header(); ?>
<div id="content"><!--index.php-->
<?php $my_query = "showposts=5"; $my_query = new WP_Query($my_query); ?>
<?php if ($my_query->have_posts()) : while ($my_query->have_posts()) : $my_query->the_post(); ?>
<!--post title as a link-->
<h3 id="post-<?php the_ID(); ?>">" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h3>
<!--post text with the read more link-->
<?php the_content('<div class="post-more">Read the rest of this entry »</div>'); ?>
<?php endwhile; // end of one post ?>
<?php else : // do not delete ?>
<h3>Page Not Found</h3>
<p>We're sorry, but the page you are looking for isn't here.</p>
<p>Try searching for the page you are looking for or using the navigation in the header or sidebar</p>
<?php endif; //end of loop ?>
<!--index.php end-->
</div><div style="text-align: center;"><p>"Dont be afraid to give up the good to go for the great." - John D Rockefeller.</p></div>
<!--include footer-->
<?php get_footer(); ?>
Any help is greatly appreciated :)