Before you ask please READ THIS

Order of elements on front page...

edited August 2012 in Skyfashion Posts: 48
I see the code for the different elements on the front page, i.e. slider, latest works etc., but I don't know enough about CSS to know where each element begins and ends within the code. I'd like to move the 'About Us' section to higher up the page. Can you tell me what the code for this element looks like, or where it begins and ends? Thanks.

Comments

  • edited August 2012 Posts: 0
    Hello,
    the code you are looking for:

    <?php
    $about_page = $apollo13->get_option('design_options', 'about_page');
    if ($about_page > 0):
    ?>

    <?php
    $loop = new WP_Query('page_id=' . $about_page);
    while ($loop->have_posts()) : $loop->the_post();
    ?>
    <?php echo get_the_title(); ?>


    <?php echo the_content(); ?>


    <?php endwhile; ?>

    <?php endif; ?>


    You have to find it by yourself in the code, because forum script interpreted some htmls tags

    Best,
    Miłosz
    Post edited by [Deleted User] on
  • Great. Thanks so much, I really appreciate it.
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!