I too had this problem. I thought the plugin was great but when I viewed the page there was far too much space between rows.
I resolved it this way. I downloaded two css files from path /wp-content/plugins/table-layout/css
the two files you need to edit are
table-layout-theme.css
table-layout-theme.min.css
edit these values below in each of the css files to a px value that suits your theme layout. I used 5px
So I went from
.mmtl-row {
padding-top: 30px;
padding-bottom: 30px
}
TO
.mmtl-row {
padding-top: 5px;
padding-bottom: 5px
}
I used https://unminify.com/ to unminify table-layout-theme.min.css so I could see the class values. I left the table-layout-theme.min.css unminified and it still works OK
Hope this helps
Jim
-
This reply was modified 8 years, 1 month ago by jrm61.