Skip to content

Commit

Permalink
Fix issue 04646: Special help text at ranking questions can't be styl…
Browse files Browse the repository at this point in the history
…ed easily

Dev Replace the <font> tags for those folks with custom templates
Dev The <font> tag can be overruled with the "td.helptext" class in template.css

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@9177 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
Tony Partner committed Oct 6, 2010
1 parent be6b66d commit c45f4c9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions qanda.php
Expand Up @@ -2670,9 +2670,9 @@ function do_ranking($ia)
. "\t</td>\n"
. "</tr>\n"
. "<tr>\n"
. "\t<td colspan='2' class='rank helptext'>\n"
. "\t<td colspan='2' class='rank helptext'><font size='1'>\n"
. "".$clang->gT("Click on the scissors next to each item on the right to remove the last entry in your ranked list")
. "\t</td>\n"
. "\t</font size='1'></td>\n"
. "</tr>\n"
. "\t</table>\n";

Expand Down Expand Up @@ -5695,10 +5695,11 @@ function do_array_multitext($ia)
$answer .= "\t<td class=\"answertextright\" style='text-align:left;' width='$answerwidth%'>&nbsp;</td>\n";
}
$answer .= "</tr>\n";
$answer .= "</tbody>\n";
//IF a MULTIPLE of flexi-redisplay figure, repeat the headings
$fn++;
}
$answer .= "\t</tbody>\n</table>\n";
$answer .= "\t</table>\n";
}
else
{
Expand Down

0 comments on commit c45f4c9

Please sign in to comment.