Results 1 to 2 of 2

Thread: Table Column Text

  1. #1
    Join Date
    May 2012
    Posts
    13
    Thanks
    8
    Thanked 0 Times in 0 Posts

    Default Table Column Text

    Hi, i have this script
    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 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!

  2. #2
    Join Date
    May 2012
    Posts
    13
    Thanks
    8
    Thanked 0 Times in 0 Posts

    Default

    Well I fixed it by changing this css class
    Code:
    .dgRownorm{
    	font-size:100%;
    	border:1px solid #bfcacd;
    	border-left-color:#ffffff;
    	border-bottom-style:none;
    	border-style: solid solid none;
    }
    To

    Code:
    .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;
    }

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •