Help with group arrangement

hie bubblers
how do i get to have one scrolling point such as with facebook and instagram see diagram below

and not multiple scrolling points such as this one below

-Make your app responsive (Uncheck fixed width)
-have your group on the left (feed) be the parent of suggestions for you rg
-make suggestions repeating group fixed number of cells or full list.

if you want to hide all scroll bars add this code to a html element or page header

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {
  background: transparent;
  border: 0px none;
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
::-webkit-scrollbar-thumb:active {
  background: transparent;
}
::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none;
  border-radius: 0px;
}
::-webkit-scrollbar-track:hover {
  background: transparent;
}
::-webkit-scrollbar-track:active {
  background: transparent;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
1 Like

HIE @anon65040322 …iv figured most parts of the notifications system

, my one question is when user clicks on the bell how do i reset the notifications count and hide it so that the next notification made is counted from 1 and it pops up again?

Add a field to your notification type, seen = yes/no

filter your notifications RG by, seen=no

When user has opened their notifications, make changes to a ‘current user’s’ list of notifications, Seen=yes


I would include a yes/no field for hidden notification, where the user can dismiss
& an option to change seen= yes to no. maybe they need to be reminded still later.