Monday, 20 July 2009 23:51

buttonheading

Rate this item
(0 votes)
Ansichten:
  • com_content/category
  • com_content/article
  • com_content/frontpage
  • com_content/section
CSS Code:
p.buttonheading {
text-align:right;
}
 
.buttonheading img
{
border:0;
}
 
p.buttonheading a:link,p.buttonheading a:visited
{
border:solid 2px #fff;
}
 
.leading p.buttonheading a:link,.leading p.buttonheading a:visited
{
border:solid 2px #EFDEEA;
}
 
p.buttonheading a:hover
{
background:none !important;
color:#000 !important;
}
 
p.buttonheading a:active,p.buttonheading a:focus
{
border:solid 2px;
color:#000;
}

Joomla PHP Code:
<p class="buttonheading">
<?php if ($this->print) :
echo JHTML::_('icon.print_screen', $this->article, $this->params, $this->access);
elseif ($this->params->get('show_pdf_icon') || $this->params->get('show_print_icon')
 || $this->params->get('show_email_icon')) : ?>
<img src="/templates/beez/images/trans.gif" alt="" />
<?php if ($this->params->get('show_pdf_icon')) :
echo JHTML::_('icon.pdf', $this->article, $this->params, $this->access);
endif;
if ($this->params->get('show_print_icon')) :
echo JHTML::_('icon.print_popup', $this->article, $this->params, $this->access);
endif;
if ($this->params->get('show_email_icon')) :
echo JHTML::_('icon.email', $this->article, $this->params, $this->access);
endif;
endif; ?>
</p>

Leave a comment

Make sure you enter the (*) required information where indicated. HTML code is not allowed.