I drove up to Mojave and back yesterday, and then got busy trying to tweak the book website, so posting has obviously been light.
Can anyone tell me why the sidebar is displaying at the bottom of the page on the static home page, but on the side where it belongs on the dynamic pages? I’m not seeing any significant difference in the code, unless it’s a stylesheet issue.
Looking at the site (got to love firefox plugin firebug), it looks like a stylesheet issue with some classes (including .site-content and .widget-area) having a different definition when inside an element with class .template-front-page
On the dynamic page, the secondary div is float:right, while on the home page it’s float:none. That’s probably it.
Nope. That just moves the search box from left to right, still on the page bottom.
Both the float property of the sidebar (id=”secondary” class=”widget-area)” and the width property of the primary area (id=”primary” class=”site-content”) are changed. With the width of primary at 100%, secondary is forced below.
So what should I do to fix it?
OK, that did it. I changed the .site-content width to be the same for both templates.