Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted February 8Feb 8 5.0.0 releaseThe table view for forum table contains forum title, forum description, and first post. For mobile only, I'd like to suppress either or both of the description and first post for a more compact view.
February 15Feb 15 Author Thinking about this, it's the forum description that should be suppressed. It's static content, and is visible when you go to the forum.
February 16Feb 16 Hi @NSPN Add one of the following pieces of code to your Custom CSS area.To only hide the description, add this:@container (max-width:750px){ .ipsData--table.ipsData--forum-category .ipsData__desc{ display: none; } }To hide the description AND the latest post, add this:@container (max-width:750px){ .ipsData--table.ipsData--forum-category :is(.ipsData__desc, .ipsData__last){ display: none; } }
February 16Feb 16 Author @Ehren Great!I hid both the description and number of posts.@container (max-width:750px){ .ipsData--table.ipsData--forum-category :is(.ipsData__desc, .ipsData__stats){ display: none; } }