Forums

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

Home Forums CSS [Solved] CSS Help WIth Sticky Welcome Message Reply To: [Solved] CSS Help WIth Sticky Welcome Message

#234707
Atelierbram
Participant

Maybe try moving the z-index like so:

.sticky-message {
  /* stuff */
  opacity: 0;
  z-index: -1;
}
.sticky-message.reveal {
  /* stuff */
  opacity: 1;
  z-index: 999;
}