Check out my awesome page here: My Page
To help with troubleshooting, I've assigned different background colors to the 3 sections of my page. The "Zine" should be red, the "Book Cover" green, and the "Magazine" yellow.
However, I'm experiencing an issue where only a small portion of the "Zine" section is showing the red background instead of the entire section as intended. Most of it is displaying as green instead.
Another problem I noticed on this 960 grid layout is that in the Book section (supposed to have a green background), the h1 tag for "Book Jacket" appears outside of the grid, positioned on the right side of the page above the image of David Carson.
Edit: Solution Found!
I made a change to the following code:
<article class="container_12">
<section class="zine">
Changed it to:
<article>
<section class="container_12 zine">
This fix seems to work because now the "zine" class encompasses the entire content that should have had a red background. This eliminates the need for a clear fix, although the clearfix suggested by others also proves effective.