Activity Stream in mobile version
- This topic has 2 replies, 2 voices, and was last updated 11 years ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Tagged: activity stream, mobile, responsiveness
The activity stream in mobile version is not showing properly…If there is a one line activity such as Sumit joined the Help and Support group, then it is not displayed at all in mobile version…Please help
Warm regards,
Sumit Agarwal
Attaching the screenshot..you can also see it by resizing your browser..The one line activity disappears and same behavious is observed in mobile too
This is the default behaviour for the CBOX theme. Below 640px viewport width, the following rule is applied:
.activity-list li.mini { display: none }
You can override this in your theme options with some CSS that makes them visible.
@media only screen and (max-width: 640px) {
body .activity-list li.mini { display: block }
}