I am still having a problem with my header text being cut off. I want the word break to break at the end of each word. Instead they are being chopped off. I see there is a place to enter custom CSS but I can't seem to figure it out. I tried multiple variations of this: table td{ word-wrap:break-word;} But I honestly don't know what I am doing and I really need this to be fixed. Thanks I have attached an image.
Actually I was able to fix the problem in the additional css panel in wordpress customize. The problem was with the table heading. This is the code that did the trick:
I am still having a problem with my header text being cut off. I want the word break to break at the end of each word. Instead they are being chopped off. I see there is a place to enter custom CSS but I can't seem to figure it out. I tried multiple variations of this: table td{ word-wrap:break-word;} But I honestly don't know what I am doing and I really need this to be fixed. Thanks I have attached an image.
Hi stephenpasquini,
Thank you for your purchase.
We have option "Word wrap" when you choose option "Limit table width" on "DISPLAY" tab on table settings.(attachment)
Can you please tell me did you try this?
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
I have word wrap on and it wraps the words in the table but doesn't seem to affect the words in the header cells of the table as you can see.
Hi stephenpasquini,
Sorry for late response.
We are located in Serbia and our working time is from 10:00 to 17:00 CET. business days.
We notice that you have some css conflicts with theme. We try to remove css from your theme and the word wrap is working fine.(attachment)
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
Wonderful what should I remove to make this work?
Hi stephenpasquini,
You have to find this css rules in css file of the theme and to comment lines shown on screenshot.(attachment)
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
Can I do this in the custom CSS? I am not a developer so I don't know exactly how to do what you are talking about.
Hi stephenpasquini,
Sorry for late response.
We are located in Serbia and our working time is from 10:00 to 17:00 CET. business days.
You have to find file style.css. Because this is theme css you can access it throw wordpress.(attachment 1)
Then find lines in that file and comment them like on screenshot.(attachment 2 and 3)
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
Actually I was able to fix the problem in the additional css panel in wordpress customize. The problem was with the table heading. This is the code that did the trick:
table th{
word-break: normal;
}
With some additional table styling:
table {
word-break: break-all;
word-wrap: normal;
line-height: 1.5;
}
Hi stephenpasquini,
We are glad that we help you to found a solution.
Best regards.
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables