Ich möchte für meine Druckansicht den Pagebrowser von tt_news mittels css verstecken und steh auf dem Schlauch.
Hier das HTML:
HTML-Code:
<div class="news-list-browser"> <div class="tx-ttnews-browsebox"> <table cellpadding="2" align="center"> <tr> <td class="tx-ttnews-browsebox-SCell" nowrap="nowrap"><p><a href="index.php?id=2">1</a></p></td> <td nowrap="nowrap"><p><a href="index.php?id=2">2</a></p></td> <td nowrap="nowrap"><p><a href="index.php?id=2">>></a></p></td> </tr> </table> </div> </div>
und als CSS habe ich folgendes versucht:
HTML-Code:
news-list-browser a {visibility: hidden;} Tom