I've been told this is CSS problem rather than PHP or HTML. Individual posts and categories without enough entries cut off the white center panel at the end of content. I'd like it to be uniform with the sidebar all the way down. Thanks. http://obsessionfitness.com/p90x-chin-up-pull-up-bar-for-tony-hortons-power-90x-home-workout/ http://obsessionfitness.com/category/equipment-type/resistance-bands-equipment-type/
If I understand correctly, you're absolutely positioning the sidebar wrap which causes it position over the container (white panel, you say). Open your stylesheet (i.e. /abstractia-10/layout.css): Remove position:absolute property from #sidebarholder and float:right; property from #sidebar rule. Like this: #sidebarholder { left: 0pt; margin-left: 608px; top: 0pt; width: 182px; } #sidebar { display: inline; margin-top: 20px; width: 182px; } Code (markup):
Thanks, that worked perfectly but also shifted all the sidebar content down on selected pages, like Archives. You can't see it right now because I reversed the changes but let me know if you can diagnose it. I really appreciate your help.