I mean it would be better to make it show up at 1 line, like:
search: [ ]
things like that would looks better~ I think CSS is down for my whole site in IE, maybe due to the site-code issue. I will check that later. But in Chrome only this header is not working, odd.
regards,
-c
Hi,
yes, I believe that this is caused by your theme as well, because the default is the “search: []” that you describe.
However, it should be easy to fix this. Please try adding this CSS code to the “Custom CSS” textfield on the “Plugin Options” screen of WP-Table Reloaded:
.dataTables_wrapper input {
display: inline!important;
}
Best wishes,
Tobias
wow, thanks for your quick reply!
Those code did works so good! It just looks perferct! But here’s another issue like at the left side, the “Show _Menu_ entries” didn’t work so good. http://book.blendercn.org/issuefixinbook
I follow your guide in thread and check from the DataTables doc: http://www.datatables.net/styling/custom_classes
The below code doesn’t work, can u suggest once again?
.dataTables_length input {
display: inline!important;
}
BR
-c
Hi,
great that this worked! 🙂
Your code to change the other dropdown is almost right, but the problem is, that the dropdown is a “select” and not an “input” in HTML code.
So, to also fix this, just change the code I gave you in my previous post to this
.dataTables_wrapper input,
.dataTables_wrapper select {
display: inline!important;
}
This will fix both the dropdown and the search.
Best wishes,
Tobia
Hi Tobia,
It’s working again! what a great help and nice of you!
Thank you so much! All the best man! 🙂
Regards,
-C