1

我正在尝试在 Orchard CMS 博客中使用 Vandelay Industries 模块。

这是它的链接:

http://gallery.orchardproject.net/List/Modules/Orchard.Module.Vandelay.Industries

我在管理员中启用了所有模块功能,但我没有让标签云看到标准标签。我还没有测试另一个。

除了启用它应该是为了使它工作之外,还有什么其他的吗?我错过了什么吗?

在此先感谢您的帮助。

如果需要,我可以提供屏幕截图(Stackoverflow 需要 10 分才能上传图片,所以这次无法上传)

4

1 回答 1

1

您需要在主题 css 中设置标签云的样式。这是我在自己的网站上使用的:

/* Tag Cloud */
ul.tagCloud { list-style: none; }
li.tagCloud-tag { display: inline; }
.tagCloud-tag a { border: none; }
.tagCloud-1 { font-size: 1em; }
.tagCloud-2 { font-size: 1.1em; }
.tagCloud-3 { font-size: 1.2em; }
.tagCloud-4 { font-size: 1.3em; }
.tagCloud-5 { font-size: 1.4em; }
.tagCloud-6 { font-size: 1.5em; }
.tagCloud-7 { font-size: 1.6em; }
.tagCloud-8 { font-size: 1.7em; }
.tagCloud-9 { font-size: 1.8em; }
.tagCloud-10 { font-size: 1.9em; }
于 2012-11-13T23:42:34.983 回答