I want it to fall below the menu so when the menu changes content it grows with it. Any ideas? Position:relative; didn’t work. I must be missing something.
yup…I realized that I needed to place the PHP I am using to call in my widgets/sidebar in a Div and position that absolute, rather than the div inside the sidebar.
If that makes sense. So now I have a div that encompasses the children divs.
Yea I tried that and no dice. I it’s because for some reason it creates a new Div for the above_sidebar with each new widget. SO if you use firebug or Chrome Inspect you’ll see two divs of the same class.
If you look at the page on the right there’s a yellow box with the class: “SidebarText”. Then below that there’s a menu of links with a class: “menu-projects-container”. The SidebarText is on top of the projects-container.
I am investigating a little more and the sidebar PHP adds the class: “above_sidebar”. Which has an absolute position. So it’s putting both my text and UL menu in separate divs with the same “above_sidebar” class. I guess I gotta figure out how to put them into the same div? Then they will layout correctly.