If you wish to show in article separator for category blog layout, You can follow these steps 🙂
1) You can change this::
.article_separator, .leading_separator, .row_separator, .column_separator {template.css (line 591)
display:none;
}
to
.article_separator{
border: 1px solid;
display: block;
}
and
.leading_separator, .row_separator, .column_separator {
display:none;
}
2) Go to ::
templates/ja_ores/html/com_content/category/blog_item.php file and change this::
<?php echo $this->item->event->afterDisplayContent; ?>
to
<span class=”article_separator”>Â </span>
<?php echo $this->item->event->afterDisplayContent; ?>