Reply To: Slider on the Left, Sidebar on the Right…How?

Homepage Community Forums Epik Theme Support Slider on the Left, Sidebar on the Right…How? Reply To: Slider on the Left, Sidebar on the Right…How?

#6532
wisefamily
Customer

    Thank you Eric. I think we’re getting closer. I’m doing my very best to learn this coding.

    Here’s what I did to the home.php page. I added the div class to both and used the one already existing called, “slider-innner” which has a width defined in the style.css page as 720px. I chose that width because it’s what I defined in the Genesis Responsive Slider settings.

    echo ‘<div class=”slider-inner”>’;
    genesis_widget_area( ‘slider’, array(

    ‘before’ => ‘<div id=”slider”><div class=”slider-inner”>’,

    ‘after’ => ‘</div></div>’,

    ) );

    genesis_widget_area( ‘slider-2’, array(

    ‘before’ => ‘<div id=”slider-2″><div class=”slider-left-sidebar-right”>’,

    ‘after’ => ‘</div></div>’,

    ) );
    echo ‘</div>’;

    }

    Here is the css for slider-inner:

    .slider-inner {
    float: left;
    margin: 0 auto !important;
    overflow: hidden;
    padding: 0 0 40px !important;
    width: 720px;
    }

    When you say play around with “the width of both the slider areas” I’m not sure where that is.

    After making these changes the sidebar went directly underneath the slider. I did have the slider sorta on the right.

    Thanks again. I really appreciate you making me try and learn this instead of just telling me.