You are not logged in.

#1 2007-09-24 19:07:43

johnisevil
Member
From: Hamilton, ON Canada
Registered: 2003-08-07
Posts: 221
Website

CSS issue

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

#2 2007-09-24 19:20:16

clownfish
Member
Registered: 2006-09-04
Posts: 72

Re: CSS issue

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

Board footer

Powered by FluxBB