You are not logged in.
Pages: 1
I'm having an issue with a design I'm working on and for the life of me can't see what I'm doing wrong. I've done something like this a million times yet this one just refuses to work.
http://avarice.oneeightseven.org/work/new/news.html
The text outside of the container should be inside it. Here's the CSS for it: http://avarice.oneeightseven.org/work/new/style.css
Any ideas?
Offline
add "overflow: auto;" to #frame:
#frame {
overflow: auto;
width: 750px;
margin: 0px auto;
padding: 0px;
background: #fff;
border-left: 1px #000 solid;
border-right: 1px #000 solid;
border-bottom: 1px #000 solid;
}
edit: overflow: hidden should do the job too...don't know the exact behaviour of overflow now. it always makes me crazy so i don't even think about keeping it more than 5 seconds in my mind
Last edited by clownfish (2007-09-24 19:23:20)
Offline
Pages: 1