Responsive tables request

FrankPereiro

Active member
Licensed customer
Hi there,

I've been searching the forum for a responsive table custom bbcode or plugin but found nothing on this.

The thing is that in my forum we use tables a lot, for sports stats basically, and those table are usually big, and that's why I need responsive tables.

Can anyone help?

Thanks a lot...
 
Your options are limited if the tables are wide and/or long.

I wrap mine in a custom bb code which allows the tables to scroll inside it.
 
I wrap mine in a custom bb code which allows the tables to scroll inside it.

Yes, we use some big tables often. Is it possible for you to share the code with us? I'd like the table to scroll... That'd be a great solution for us...
 
I just wrap the content in [CONTAINER][/CONTAINER] tags which has been defined as a custom bb code.

193094

The class reference is just this in a custom template (e.g. EXTRA.css):
CSS:
.ctaBbcodeContainer
{
    width: auto;
    max-height: 600px;
    overflow: auto;
}
 
Back
Top Bottom