I noticed when using tables, that column 1 / row 1 doesn't display content. I found that by removing the following from /js/jquery.restable.js (line 205) allowed the text to appear:
You need to use table shortcode if you want to have responsive tables. You can to use text block shortcode instead table shortcode for one column tables.
I noticed when using tables, that column 1 / row 1 doesn't display content. I found that by removing the following from /js/jquery.restable.js (line 205) allowed the text to appear:
if (responsive_table) {
$(responsive_table).show();
} else {
responsive_table = create_responsive_table(element, i);
}
Since this appears to be a bug, I wanted to bring it to your attention so that it may be addressed in future releases.
Hi,
You need to use table shortcode if you want to have responsive tables. You can to use text block shortcode instead table shortcode for one column tables.