Home › Community Forums › Adapt Theme Support › HOme sidebar problem
- This topic has 5 replies, 2 voices, and was last updated 11 years, 1 month ago by
Wes.
-
AuthorPosts
-
April 24, 2012 at 12:54 am #835
Cove145
CustomerI 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?
Thanks
Kris
April 24, 2012 at 12:59 am #836Wes
ModeratorYou 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.
April 24, 2012 at 1:48 am #837Cove145
CustomerI 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();
April 24, 2012 at 1:57 am #838Wes
ModeratorWhat 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.
April 24, 2012 at 2:12 am #839Cove145
CustomerGot it thanks.
April 24, 2012 at 2:12 am #840Wes
ModeratorYou’re Welcome
-
AuthorPosts
- The topic ‘HOme sidebar problem’ is closed to new replies.