I'm relatively new to web development and I'm hoping this is a simple fix. I have a Body div and a left column and right column div inside that body div. I want the body div background to show not the column divs(which cut out some of the white background destroying the flush look I'm going for).

Here is what I'm talking about:
http://www.kennesaw.edu/yearofromania/lectures.html

This is what I want the body to look like:
http://www.kennesaw.edu/yearofromania/events.html

I dont like the way to background get clipped in the first one, any help would be great. Thanks!

Recommended Answers

All 2 Replies

Try this, open your html file just after the code that reads

<div id="MiddleRightPan"></div>

put this code after the closing div

<div class="clear_both"></div>

then open your .css file and put this code, anywhere you like.

.clear_both {
clear: both;
}

That worked wonderfully! And just in time to, I found a quick fix by setting a static value for the bodyPan height(though I knew it wasn't the correct way) Thanks bubba!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.