我已经实施了“Phpspellcheck”API来查找错误拼写单词的自动建议。
<?php
#PHP Source Code
require "phpspellcheck/include.php"; //edit this path if necessary
$mySpell = new SpellAsYouType();
$mySpell->InstallationPath = "phpspellcheck/";
$mySpell->Fields = "ALL";
echo $mySpell->Activate();
?>
一切正常,但我遇到了一个严重的问题。
我在10中的文本框内的字体大小。如果我在里面写了不正确的单词,在单词下面会出现红色/绿色的行但是字体较大(我猜它是13)。我希望检测到的单词也出现在大小10中。我尝试了很多但是成功了。有人有个主意吗?
谢谢, Biplab
答案 0 :(得分:0)
快速而肮脏:修改context-menu.css
并将font-size: 10px;
添加到livespell_redwiggle
和livespell_greenwiggle
课程。它应该看起来像:
.livespell_redwiggle {
...
font-size: 10px;
}
.livespell_greenwiggle {
...
font-size: 10px;
}
最好是使用上述更改创建custom theme。