Jump to content

Featured Replies

Posted

5.0.0 release

The 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.

  • 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.

This is something you can do with CSS :-)

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;
    }
}
  • 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;
    }
}

Recently Browsing 0

  • No registered users viewing this page.