Greetings everyone,

I'm having an issue with the wrapper just ending. The only thing that seems to somewhat solve it is putting a min-height on the wrapper div...even still, it's sloppy and if you're on a smartphone, when you scroll down it still just ends. Can you please have a look at it and let me know how to fix the issue?

http://www.ebbenzallgroup.com/claycharities/index-orig.html

please help! thanks in advance!

Bryan

Recommended Answers

All 2 Replies

I dont have time to take a look at this in detail, but I imaging that you have some items within that wrapper that are set to float, or you are using positioning which both of these takes the items out of their normal flow.

There are several ways to fix this.. a very simple way is to include a "float:clear both" before you close the wrapper div. Again, there are others...very well documented on the web.

<div id="wrapper">
   all of your other content....
   <div class="clear"></div>
</div>

Is the wrapper the white rectangle at the back? If so add float:left to it's css

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.