I just came across a bug in the Table-Shortcode. The Table-Header-Row doesn’t translate/reposition itself correctly in the mobile view. Please have a look at the following screenshot:
https://dl.dropboxusercontent.com/u/962269/Enfold_table_Bug.jpg
Hey visualpro!
Send us a link and we’ll take a look.
Also, it would be great if you could take a screenshot of your table in the layout builder so we can see how you have it setup.
Best regards,
Elliott
Thanks for the reply Elliot (which I discoverd just now),
Link to the page is: http://ggsaldenhoven.de/elternvertretung/schulpflegschaft/
Screenshot for the Layout-Builder-Setup: https://dl.dropboxusercontent.com/u/962269/Enfold_Table-Setup.png
Hey!
The problem is that first column I think. What happens when you open up /enfold/config-templatebuilder/avia-shortcodes/table.php and change line 294 from this.
$responsive_style .= ".avia-table-".self::$table_count." td:nth-of-type(".($counter + 1)."):before { content: '".$row['content'][$counter]['content']."'; } ";
To this.
$responsive_style .= ".avia-table-".self::$table_count." td:before { content: '".$row['content'][$counter]['content']."'; } ";
Best regards,
Elliott
Thanks Elliott,
this solved the problem. How can I include the change into my child-theme, so it is not overwritten when I update the theme?
Hey!
Please see – http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/
Best regards,
Yigit
Thanks!