HOme sidebar problem

Home Forums Adapt Theme Support HOme sidebar problem

This topic contains 5 replies, has 2 voices, and was last updated by  Wes 1 year, 1 month ago.

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #835

    Cove145
    Member

    I took the images out of my home bottom sidebar 1 and home bottom sidebar 2 sections and my home sidebar section jumped up above my featured posts. I can’t figure out how to get it in the right position, could you look and see what I am doing wrong?

    http://www.createthevibe.com

    Thanks

    Kris

    #836

    Wes
    Moderator

    You need to wrap the home-bottom-sidebar and the home bottom featured posts in a div to separate it from the home bottom sidebar 1 & 2. Everything is floating left and right, and you don’t have a div wrapped around the home-bottom-sidebar and featured posts to prevent it from floating up like it is.

    #837

    Cove145
    Member

    I am stuck here, so I seperated the home-sidebar 1 and 2 but now I am trying to figure out the home sidebar and featured posts.
    here is what I have and am working on.

    */
    function adapt_home_loop_helper() {
    if ( is_active_sidebar( ‘home-bottom-sidebar-1′ ) || is_active_sidebar( ‘home-bottom-sidebar-2′ ) || is_active_sidebar( ‘home-bottom-sidebar’ ) || is_active_sidebar( ‘home-featured-posts’ ) || is_active_sidebar( ‘home-bottom-top-message’ ) ) {

    echo ”;

    if ( is_active_sidebar( ‘home-bottom-top-message’ ) ) {
    echo ”;
    dynamic_sidebar( ‘home-bottom-top-message’ );
    echo ‘‘;
    }

    if ( is_active_sidebar( ‘home-bottom-sidebar-1′ ) ) {
    echo ”;
    dynamic_sidebar( ‘home-bottom-sidebar-1′ );
    echo ‘‘;
    }

    if ( is_active_sidebar( ‘home-bottom-sidebar-2′ ) ) {
    echo ”;
    dynamic_sidebar( ‘home-bottom-sidebar-2′ );
    echo ‘‘;
    }

    echo ‘‘;

    if ( is_active_sidebar( ‘home-bottom-sidebar’ ) ) {
    echo ”;
    dynamic_sidebar( ‘home-bottom-sidebar’ );
    echo ‘‘;
    }

    if ( is_active_sidebar( ‘home-featured-posts’ ) ) {
    echo ”;
    dynamic_sidebar( ‘home-featured-posts’ );
    echo ‘‘;
    }

    if ( is_active_sidebar( ‘home-bottom-message’ ) ) {
    echo ”;
    dynamic_sidebar( ‘home-bottom-message’ );
    echo ‘‘;
    }

    }

    }

    genesis();

    #838

    Wes
    Moderator

    What are you trying to figure out?

    Remember, your home featured posts and bottom sidebar should both sit inside of a div container with a defined width (960px). Use the home-bottom div container as an example, it currently wraps around the home-bottom sidebar 1 & 2 on your site….the same should be done with the bottom posts, and sidebar.

    #839

    Cove145
    Member

    Got it thanks.

    #840

    Wes
    Moderator

    You’re Welcome

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘HOme sidebar problem’ is closed to new replies.