Title: Problem with responsive tables
Last modified: February 11, 2018

---

# Problem with responsive tables

 *  Resolved [markiesp2](https://wordpress.org/support/users/markiesp2/)
 * (@markiesp2)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/problem-with-responsive-tables/)
 * Hi Tobias,
 * My name is Mark. I’ve been using Tablepress for a few years and it’s amazing!
   
   However, there’s one thing I can’t seem to fix. I’ve downloaded Responsive Tables
   and used the following code, but somehow nothing happens: [http://bit.ly/2G2orGk](http://bit.ly/2G2orGk)
 * `[table id=1 responsive=scroll /]`
 * Do you know how to make it responsive and scrollable? I’ve been Googling for 
   some time but didn’t find an answer.
 * Kind regards,
    Mark
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fproblem-with-responsive-tables%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/problem-with-responsive-tables/#post-9962813)
 * Hi,
 * thanks for your post, and sorry for the trouble.
 * The problems that you are seeing are caused by your theme, which also seems to
   be making changes for responsiveness of tables. The relevant code is
 *     ```
       // Table
       $('table:not(.fixed):has(thead):has(tbody)').each(function() {
       	if ($('thead tr > *', this).length >= conf.tableMobileColsThreshold) {
       		$('tbody tr > *', this).each(function() {
       			var label = $.trim($(this).closest('table').find('thead th').eq($(this).index()).text());
       			if (label) {
       				$(this)
       					.addClass('alt-mobile-labeled')
       					.prepend($('<label />', {'class': 'alt-mobile-label'}).text(label));
       			}
       		});
       		$(this).addClass('alt-mobile');
       	}
       });
       ```
   
 * and it’s in the JS file /wp-content/themes/time/data/js/time.js of your theme,
   and in minified fashion also in /wp-content/themes/time/data/js/time.min.js
 * I suggest to remove this or comment it out in those files.
 * Regards,
    Tobias

Viewing 1 replies (of 1 total)

The topic ‘Problem with responsive tables’ is closed to new replies.

 * ![](https://ps.w.org/tablepress/assets/icon.svg?rev=3192944)
 * [TablePress - Tables in WordPress made easy](https://wordpress.org/plugins/tablepress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tablepress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tablepress/)
 * [Active Topics](https://wordpress.org/support/plugin/tablepress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tablepress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tablepress/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * Last activity: [8 years, 4 months ago](https://wordpress.org/support/topic/problem-with-responsive-tables/#post-9962813)
 * Status: resolved