Making Slider Appear Above Text

Hi guys,

I no very little about php but the problem I am having is trying to get my slider to appear above my content,

http://www.finding-forrester.com/

[php]<?php

/**

  • Template Name: Home Page
    */
    add_action( ‘genesis_meta’, ‘dizain_home_meta’ );

/**

  • Homepage meta
    */
    function dizain_home_meta() {

    add_action( ‘genesis_loop’, ‘dizain_home_loop’ );
    add_filter( ‘body_class’, ‘dizain_full_width_content’ );
    remove_action( ‘genesis_before_content_sidebar_wrap’, ‘dizain_page_title’ );
    remove_action( ‘genesis_sidebar’, ‘genesis_do_sidebar’ );
    add_action( ‘genesis_after_endwhile’, ‘genesis_posts_nav’ );

}

/**

  • Homepage loop
    */
    function dizain_home_loop() {

    dizain_home_slideshow();

}

genesis();
[/php]

That is all the php from the template file

Many thanks in advance

Jack

Whatever you posted makes no sense to me, but from the HTML on your website…

You need to move this DIV

[php]

PrevNext
[/php]

Above this Div…

[php]

[/php]

Yes, exactly. It’s question of CSS and HTML. You can edit in your template settings.

Sponsor our Newsletter | Privacy Policy | Terms of Service