|
Hi, Could you please include the following in the next release so its easy to change the style (or hide unwanted parts) with CSS ~~~~~~~~~~~~~~ <td class="ccbpostuserdetails"> <b><?php echo $this->labels['joined']; ?></b>: <?php echo JHTML::_('date', $postuser['registerdate'], $ccbConfig->dateformat); ?><br/> <b><?php echo $this->labels['post']; ?></b>: <?php echo number_format($postuser['post_count']); ?><br/> <b><?php echo $this->labels['location']; ?></b>: <?php echo $postuser['location']; ?> </td>~~~~~~~~~~~~ with: ~~~~~~~~~~~~ <td class="ccbpostuserdetails"> <span class="ccjoined"><b><?php echo $this->labels['joined']; ?></b>: <?php echo JHTML::_('date', $postuser['registerdate'], $ccbConfig->dateformat); ?><br/></span> <span class="ccpostnum"><b><?php echo $this->labels['post']; ?></b>: <?php echo number_format($postuser['post_count']); ?><br/></span> <span class="cclocation"><b><?php echo $this->labels['location']; ?></b>: <?php echo $postuser['location']; ?></span> </td>~~~~~~~~~~~~~~~~~~~ One might consider adding at least a blank entry in the css file to let people know they can change them... Although considering that I am sure there are other instances not changed with the above. I have also changed the width of the below to allow for better viewing, it helps in admin view :) ~~~~~~~~~~~~~~~~~~ td.ccbheaderusername { overflow:hidden; text-align:right; width:250px; } ~~~~~~~~~~~~~~~~~~ too: ~~~~~~~~~~~~~~~~~ td.ccbheaderusername { overflow:hidden; text-align:right; width:220px; } ~~~~~~~~~~~~~~~~~ Thanks. Oah and by the way, I like your code. And the way you have your files organized. It is all very intuative. |