@vbgamer45
Had to fix the ShowArticlesBar on this mod in Sources/Articles2.php - (similar issue as with ezportal)
Current Code
<table class="table_list">
<tbody class="header">
<tr class="catbg">
<td align="center" colspan="4" class="catbg"><span class="left"></span>', $title, '
</td>
</tr>
</tbody>
</table>
Needed changing to
<table class="table_list">
<tbody class="header">
<tr class="catbg">
<td align="center" colspan="4">
<div class="cat_bar">
<h3 class="catbg">', $title, '</h3>
</div>
</td>
</tr>
</tbody>
</table>
I've attached the edited file to make life easy