Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Overflow issue. The site keeps scrolling and scrolling… Reply To: Overflow issue. The site keeps scrolling and scrolling…

#253162
Atelierbram
Participant

On line 652 of your style.css there is overflow: scroll set on .content. You want to get rid of that.

.content {
  float: right;
  width: 50%;
  /* overflow: scroll; */
}

On line 610: .content-sidebar-wrap, has flexbox set on that container with no additional flex-properties applied, which seems strange to me. Maybe try to temporarily disable that one as well.

.content-sidebar-wrap {
  /* display: flex; */
  /* height: 100vh; */
}