Commit 1853c2af521f0d957bcbafc3fef3b46491e44ef0

Authored by Michael Joseph
1 parent 6363cc46

changed width to relative value


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2412 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/foldermanagement/folderUI.inc
@@ -69,7 +69,7 @@ function renderFolderPath($iFolderID, $sLinkURL, $bDisplayLinks = true) { @@ -69,7 +69,7 @@ function renderFolderPath($iFolderID, $sLinkURL, $bDisplayLinks = true) {
69 } else { 69 } else {
70 $sFolderPath = implode(" > ", Folder::getFolderPathNamesAsArray($iFolderID)); 70 $sFolderPath = implode(" > ", Folder::getFolderPathNamesAsArray($iFolderID));
71 } 71 }
72 - return "<table border=\"0\" cellpadding=\"5\" width=\"600\"><tr><td bgcolor=\"$sTDBGColour\">$sFolderPath</td></tr></table>\n"; 72 + return "<table border=\"0\" cellpadding=\"5\" width=\"100%\"><tr><td bgcolor=\"$sTDBGColour\">$sFolderPath</td></tr></table>\n";
73 } 73 }
74 74
75 /** 75 /**