As previously announced via banners and our newsletters, support is no longer available through this platform.
For easier navigation, you can still click on "Submit a Ticket" here, choose the appropriate category, and you'll be redirected to the correct support channel for your plugin.
You can still access your previous tickets and browse public tickets, but please note that responding to tickets is no longer possible.
Paid customers: Please log in to your store account for support.
Pre-purchase questions: Use the support widget in the bottom-right corner of our websites:
https://wpamelia.com
https://wpdatatables.com
https://wpreportbuilder.com
I'm using the default table colour scheme. One of my columns has hyperlink buttons in it, which are blue background with lighter blue text. As a result the text is quite difficult to read.
In order to change the text colour I have gone to the column, settings, display and entered "hyperlink_button" in the CSS class(es) field. I have then gone to the wpDataTables settings, custom JS and CSS and entered the following in the Custom wpDataTables CSS field
table.wpDataTable td.hyperlink_button {
color: white;
}
The text has not changed colour. If I enter in the font size I can get that to change, but the text colour is not responding. Please can you advise what I need to do to change the text colour?
Thanks
Mike
Hi Mike.
Thank you for your purchase.
The CSS needs to target the "a" parameter of a hyperlink (<a href...), so the CSS should be:
table.wpDataTable td.hyperlink_button > a { color: white !important; }Also, that will remove the "underline" decoration, so to include it back, you should add another line:
table.wpDataTable td.hyperlink_button > a:hover { text-decoration: underline !important; }Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
Thanks Aleksandar. It doesn't seem to have worked. I've attached a document with screen shots of
Hi again Mike
Since this is a button, you need to add the class in the Data tab in column settings, under "Button Class":
If that doesn't work either, please provide me a temporary WP-admin login for your site where this happens, so we could log in and take a look ‘from the inside’ as that’s the most efficient way to see and resolve the issue. We do not interfere with any data or anything else except for the plugin (in case that’s a production version of the site), and of course we do not provide login data to third party.
You can write credentials here just check Private Reply so nobody can see them except us.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables