Hey, As you can see I have some text below the image on the right but that is supposed to be the footer, I am not sure how I put that to stay along the bottom. DEA Thanks in advance!
I just learned how to do this so I may not explain it the best. You need to clear the main content div. That will force your footer back to the proper place. To do that you need to add this code to your CSS file: .brclear { clear:both; height:0; margin:0; font-size: 1px; line-height: 0; } Code (markup): Then add this line to your page or pages just after you close the main content </div> <br class="brclear" /> Code (markup): Some times you have to place that after the close of a different div. In most cases that call is not needed after every </div>. I don't know enough to explain why it is needed sometimes and not others. Maybe another poster can explain that.
Awesome, I got it I just put in this: .brclear { line-height: 0; } Code (markup): Works fine so thanks for your help.