印刷時にカスタムフォーマットが必要なdrupalページがあるので、すべてを別の印刷cssに入れます。私のテキストの色を除いて、ほとんどが機能しています。
*
-selectorも含め、テキストに関連付けられているすべてのセレクターを試しました。しかし、それらのどれも色を変えません。
動作するのは、実際のページのFirefoxエディターで色を変更することです。
HTMLの一部であるこの場合、最も内側の要素を黒に変更する必要があります。
<div class="field-label">Productgroep: </div>
<div class="field-items">
<div class="field-item even">
<a href="/taxonomy/term/43" typeof="skos:Concept" property="rdfs:label skos:prefLabel">Fruit</a>
</div>
</div>
</div>
私が試したCSS:
art-post-inner art-article, /* one of the wrappers */
field-items, /* the outer div */
a, /* select all links, I have also tried all the different states of a link (hovered, visited, etc) */
* /* select all */
{
color: #000;
}
さらに情報が必要な場合は、お問い合わせください。