Log in

View Full Version : Table Column Text



F0u4d
06-05-2012, 03:55 PM
Hi, i have this script (http://leb-media.com/fouadlb/files/GermanySupporters/Scores2/phpmydatagrid-2011-09-27/sample9.php)
It's a script that allow me to edit database tables through the web.
Everything works perfect except that if a column has large word without space between as u can see if u open the link (http://leb-media.com/fouadlb/files/GermanySupporters/Scores2/phpmydatagrid-2011-09-27/sample9.php) it's jumping on the column next to it...
i been messing with the css and the whole codes of the script but couldn't get this thing fixed... those are all my codes...

Main page code = http://pastebin.com/44qgpeti
PHP Script code = http://pastebin.com/LqavqHdx
My css code = http://pastebin.com/cGaJxvkJ

i posted both my css and script codes in case the problem is not in the CSS file...
So i'm hoping someone could help me solving this problem :)
Thanks in Advance!

F0u4d
06-05-2012, 05:40 PM
Well I fixed it by changing this css class :)

.dgRownorm{
font-size:100%;
border:1px solid #bfcacd;
border-left-color:#ffffff;
border-bottom-style:none;
border-style: solid solid none;
}

To


.dgRownorm{
font-size:100%;
border:1px solid #bfcacd;
border-left-color:#ffffff;
border-bottom-style:none;
border-style: solid solid none;
word-wrap: break-word;
overflow: hidden;
}