swiftlet
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Table Builder – Drag & Drop Table Builder] Fix table size in mobile viewThe table is wider than the handphone screen under mobile view.
1. I believe one of the problems is because you have a fixed td set as width:100px
Under responsive mode, since the td width is 100px, if you have an image in the row, the img max-width is 100%.
.wptb-table-container-0 table td[data-wptb-css-td-auto-width=true]{width:100px}Would you please change the 100px to “auto”?
It could be fixed by:
“wp-table-builder-frontend.js”
ORG:
table td[data-wptb-css-td-auto-width=true]{width:”).concat(l,”px}”),S&&S.appendChild(v))NEW:
table td[data-wptb-css-td-auto-width=true]{width:auto”),S&&S.appendChild(v)2. Your javascript incorrectly set the table min-width:XXXpx under mobile view, for instance, XXX is 522px on my screen, which causes the table wider than my mobile screen. Since the min-width is added by js, I can’t modify it without hacking the scripts.
The table will be working well after removing the min-width under F12 chrome-dev mode. Would you please remove the min-width from the javascript?
Forum: Plugins
In reply to: [WP Table Builder – Drag & Drop Table Builder] Bug: link lose nofollow relHello @erdembircan
It’s good to know that it will be fixed in upcoming updates.
Since you are working on that, may I suggest, instead of two drop-down lists for “rel” and “target”, could you please change it to an interface similar to WP link, 3 buttons for:
Open in new tab.
Set to nofollow.
Set to sponsored.It will be easier to use and save us a lot of clicks.
Thanks!