Joomla!バージョン:1.5.23
PHPバージョン:5.2.17
MySQLバージョン:5.1
サーバ情報:SAKURA
PDFやプリンタのアイコンの横に表示させるのでしょうか。どのように表示したいのかわかりませんが。
デフォルトテンプレートでしたら、
joomla/components/com_content/views/article/tmpl/default.php
23行目に
<td align="right" width="100%" class="buttonheading"><a href=""><img alt="" title="" src="./images/M_images/livemarks.png" /></a></td>
を、挿入してみてください。
↓↓
</td>
<?php endif; ?>
23行目 <td align="right" width="100%" class="buttonheading"><a href=""><img alt="" title="" src="./images/M_images/livemarks.png" /></a></td>
<?php if (!$this->print) : ?>
<?php if ($this->params->get('show_pdf_icon')) : ?>
<td align="right" width="100%" class="buttonheading">
<?php echo JHTML::_('icon.pdf', $this->article, $this->params, $this->access); ?>
</td>
<?php endif; ?>