Hi, thank you for your reply!
as I'm no genius in php I couldn't quite figure out where to put the lines you suggested me, but still could figure out what they should do.
so what I finally did is modify the view.default.php where it renders the table and made it look like this
- Code: Select all
<table <?php echo $this->mstyle; ?> class="gk_news_show_table
<?php
if($_GET['view']=='article')
echo " gk_art_view"
?>
" id="<?php echo $this->module_unique_id; ?>">
where separated lines (which I took from your example) add a " gk_art_view" class to the rendered table, which I made invisible
- Code: Select all
table.gk_news_show_table.gk_art_view {display:none;}
in my css file, thus, finally it renders in at the end but is invisible... which is fine too
so thank you !!