I have a left column on my site and the menu is at the top of it. I have another element that I want under it, but I want it to be aligned to the bottom of the page. I have tried to do this with vertical align with no luck. Does anyone have any ideas? thanks.
try in css for this element bottom:0; position: absolute; HTML: but the best option give a link for Your page - then You received help faster
I had tried that before and it didn't work. I don't want to list the page here because I have just spend a month trying to get it out of google's index because it is my test site rather than the real one.
You could try adding position: relative; to the left column and then position:absolute; bottom:0; to the element you want aligned at the bottom. So it would position the element absolutly in relation to the left column, and not the page.
Yeah well if you knew the height of the sidebar then you could just add a margin-bottom to whatever is above it of the remaining space.