Forums

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

Home Forums Design How do we pop up a new "section" onto a page like gmail? (SOLVED) Reply To: How do we pop up a new "section" onto a page like gmail? (SOLVED)

#256994
mw84
Participant

The key is as follows (particularly, position: fixed) :

.add-window {
  min-width: 350px;
  position: fixed;
  bottom: 0px;
  right: 10px;
  border: 1px solid black;
  background-color: white;
}