Dan
Dan

Reputation: 533

Liquid CSS layout issues

Alright I have a CSS liquid div based layout for my personal web site. The address is http://danberinger.com/preview.html

The problem is the I do not want the footer section to act as if it were displayed inline, because right now when the window is stretched beyond the pixel width needed for the intro_container, it moves the footer div to the right of it. I would like this footer to stay put at the bottom of the page rather than moving up and to the right when space allows for it.

Thanks for any help you can offer. I have loved this forum so far, very helpful.

Upvotes: 1

Views: 279

Answers (2)

Mark Embling
Mark Embling

Reputation: 12821

#footer {
    clear: both;
}

This will ensure it is always pushed down below all other floated content. This seems to provide the effect you are asking for.

Upvotes: 2

ant
ant

Reputation: 22948

here is css fix for it

#footer{
position:absolute;
bottom:0;
}

Upvotes: 0

Related Questions