Forums

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

Home Forums CSS Getting a tabular sidebar to go all the way down page Reply To: Getting a tabular sidebar to go all the way down page

#238339
bearhead
Participant

The gap is there because .sidebar is positioned 10 pixels up (top:-10px). Maybe you could try removing that -10px from the sidebar, and instead apply it to the content within the sidebar?

so:

.sidebar p{
  position:relative;
  top:-10px;
}