M mastern New Member YetiShare User Apr 24, 2013 56 1 0 Mar 15, 2014 #1 Hi Adam, DataTable Align need to be fixed (css). See the pic. attached. Regards, Maverick Attachments 15-03-2014 19-44-32.jpg 43.1 KB Views: 20
uprv New Member YetiShare User Jul 31, 2013 10 0 0 wupload.eu Mar 18, 2014 #2 Whats your screen resolution? I would like to check this, too. I also think I'd be able providing a fix for this.
Whats your screen resolution? I would like to check this, too. I also think I'd be able providing a fix for this.
adam Administrator Staff member Dec 5, 2009 2,046 108 63 Mar 18, 2014 #3 This is probably as a result of the 'value' column having long text in it without spaces. It's fixed for the next release in our local copy. If you want to patch it, open: Code: /admin/assets/styles/style.css Find: Code: .dataTable td {border-top: none; border-bottom: none;} Replace with: Code: .dataTable td { border-top: none; border-bottom: none; white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ white-space: pre-wrap; /* css-3 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ word-break: break-all; white-space: normal; }
This is probably as a result of the 'value' column having long text in it without spaces. It's fixed for the next release in our local copy. If you want to patch it, open: Code: /admin/assets/styles/style.css Find: Code: .dataTable td {border-top: none; border-bottom: none;} Replace with: Code: .dataTable td { border-top: none; border-bottom: none; white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ white-space: pre-wrap; /* css-3 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ word-break: break-all; white-space: normal; }