Hi,
Is it possible to have Module like suffixes for Article Titles in this theme? I mean the Horizantal Line to appear along article Titles as is appearing in the Module titles
<?php if ($params->get('show_title')|| $params->get('access-edit')) : ?>
<h2>
<?php if ($params->get('link_titles') && !empty($this->item->readmore_link)) : ?>
<a href="<?php echo $this->item->readmore_link; ?>">
<?php echo $this->escape($this->item->title); ?></a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h2>
<?php endif; ?>
<?php if ($params->get('show_title')|| $params->get('access-edit')) : ?>
<h2>
<span>
<?php if ($params->get('link_titles') && !empty($this->item->readmore_link)) : ?>
<a href="<?php echo $this->item->readmore_link; ?>">
<?php echo $this->escape($this->item->title); ?></a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</span>
</h2>
<?php endif; ?>
#gkPage .box > div > h3.header,#gkPage .box_text > div > h3.header {
height: 15px;
font-size: 18px;
font-weight: normal;
text-transform: uppercase;
margin: 22px 0 14px 0;
padding: 0;
border-bottom: 1px solid #e0e0e0;
border-top: 3px solid #ea1c1c;
color: #333;
}
#gkPage .box > div > h3.header,#gkPage .box_text > div > h3.header,div.item-page > h2 {
height: 15px;
font-size: 18px;
font-weight: normal;
text-transform: uppercase;
margin: 22px 0 14px 0;
padding: 0;
border-bottom: 1px solid #e0e0e0;
border-top: 3px solid #ea1c1c;
color: #333;
}
#gkPage .box > div > h3.header > span,#gkPage .box_text > div > h3.header > span {
margin-top: -18px;
display: block;
padding-right: 12px;
background: #fff;
float: left;
}
#gkPage .box > div > h3.header > span,#gkPage .box_text > div > h3.header > span,div.item-page > h2 > span {
margin-top: -18px;
display: block;
padding-right: 12px;
background: #fff;
float: left;
}