Hi guys,
Here is my page:
http://www.yourvancouvermortgagebroker.ca/
I am trying to move the three service boxes (rates, broker vs bank, apply) to the bottom of the page, below the <about me> and sidebar section. Here is the code in the home.php but I have not been able to figure it out... Any thoughts? Thanks as always. Here is home.php
Code:<?php get_header(); ?> <?php if (is_front_page() && get_option('minimal_featured') == 'on') include(TEMPLATEPATH . '/includes/featured.php');?> <?php if (get_option('minimal_services') == 'on') { ?> <?php if (get_option('minimal_featured') == 'false') { ?> <div id="services_bg"> <?php }; ?> <div id="services" class="clearfix"> <div class="one-third first"> <?php query_posts('page_id=' . get_pageId(html_entity_decode(get_option('minimal_service_1')))); while (have_posts()) : the_post(); ?> <?php include(TEMPLATEPATH . '/includes/service_content.php'); ?> <?php endwhile; wp_reset_query(); ?> </div> <!-- end .one-third --> <div class="one-third"> <?php query_posts('page_id=' . get_pageId(html_entity_decode(get_option('minimal_service_2')))); while (have_posts()) : the_post(); ?> <?php include(TEMPLATEPATH . '/includes/service_content.php'); ?> <?php endwhile; wp_reset_query(); ?> </div> <!-- end .one-third --> <div class="one-third"> <?php query_posts('page_id=' . get_pageId(html_entity_decode(get_option('minimal_service_3')))); while (have_posts()) : the_post(); ?> <?php include(TEMPLATEPATH . '/includes/service_content.php'); ?> <?php endwhile; wp_reset_query(); ?> </div> <!-- end .one-third --> </div> <!-- end #services --> <?php if (get_option('minimal_featured') == 'false') { ?> </div> <!-- end #services_bg --> <?php }; ?> <?php }; ?> <?php include(TEMPLATEPATH . '/includes/default.php'); ?> <?php get_footer(); ?>



Reply With Quote

Bookmarks