2

我尝试在 Plone 的 ZPT 页面中使用 CSS。它工作的唯一方法是内联 css。在标题中使用样式标记不起作用,也没有尝试使用链接的 css 文件。

有没有办法做到这一点?

4

1 回答 1

4

如果您只想在该模板中使用该特定 css,那么首先您必须像这样注册您的 css 资源目录(在浏览器模块中):

<!-- Register the resource directory for stylesheets -->
<browser:resourceDirectory
    name="[YOUR_PLONE_PRODUCT].styles"
    directory="styles"
    layer=".interfaces.IThemeSpecific"
    />

然后在您的模板中像这样使用它:

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
      lang="en"
      metal:use-macro="here/main_template/macros/master"
      i18n:domain="[YOUR_PLONE_PRODUCT]">

<metal:slot fill-slot="css_slot">
    <link href="myspecialstyle.css"
       rel="stylesheet"
       type="text/css" 
       tal:attributes="href string:${context/portal_url}/++resource++[YOUR_PLONE_PRODUCT].styles/myspecialstyle.css"/>
</metal:slot>

<body>
    <metal:main fill-slot="main">
     ...

这是一些有用的文档:

于 2011-12-22T11:42:44.347 回答