You need open file:
{yours host}/components/com_booklibrary/booklibrary.html.php
find function displayBooks
and in it remove or edit below code:
Code: |
<div class="componentheading<?php echo $params->get( 'pageclass_sfx' ); ?>">
<?php echo $currentcat->header; ?>
</div>
<table border="0" cellpadding="4" cellspacing="0" width="100%">
<tr>
<?php
if($currentcat->img != null && $currentcat->align == 'left' && $params->get( 'show_cat_pic') ){
?>
<td>
<img src="<?php echo $currentcat->img; ?>" align="<?php echo $currentcat->align; ?>" alt="Ctegory image"/>
</td>
<?php
}
?>
<td width="100%">
<?php echo $currentcat->descrip; ?>
</td>
<?php
if($currentcat->img != null && $currentcat->align == 'right'){
?>
<td>
<img src="<?php echo $currentcat->img; ?>" align="<?php echo $currentcat->align; ?>" alt="?" />
</td>
<?php
}
?>
</tr>
</table>
|
But first please back up file
Thanks,
OrdaSoft team