Hi,
thanks for your post, and sorry for the trouble.
Also, sorry for the late reply. I was very busy with personal life, so that I could not reply earlier.
Aligning all this should be possible with CSS code. Can you please post a link to the page with the table where this problem happens, so that I can take a direct look? Thanks!
For the Search label, you can add a “Custom Command” to the table’s “Edit” screen, like
"language": { "searchPlaceholder": "Search" }
Regards,
Tobias
Thread Starter
ricmo
(@ricmo)
Hi Tobias,
No problem, I can understand life gets in the way!
Concerning the page I would like to modify, this is the link:
https://www.blueberries.gg/weapons/destiny-2-weapons-list/
I would like to align filter and search box as can be seen here, for example:
View post on imgur.com
Thank you in advance!
Hi,
ok, you could try adding this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:
.dataTables_wrapper .column-filter-widgets {
float: right;
}
.dataTables_wrapper .dataTables_filter {
float: left;
}
.dataTables_wrapper .dataTables_filter input {
margin: 5px;
}
Regards,
Tobias
Thread Starter
ricmo
(@ricmo)
This worked great, thanks a lot for your support!