Hey guys,
I'm using the recent posts module and the way it styles the sidebox just doesn't fit into my forum theme well. I've narrowed it down to one change I could make to the recent post module to make it fit well into my theme. As you can see in the photo linked(
https://imgur.com/a/UWKnhoy ), if I can remove "class='tcat'" from the cell style it will be all good. I found this in the recentposts.php file and removed it, yet when I load the forums it still loads this class="tcat" style. The php file for sure does not include it anymore as seen below:
'templates' => array(
array(
'title' => 'asb_recent_posts_post',
'template' => <<<EOF
<tr>
<td style="text-align: center;">
<a style="font-weight: bold;" href="{\$mybb->settings[\'bburl\']}/{\$post[\'link\']}" title="{\$post[\'subject\']}">{\$post[\'subject\']}</a>
</td>
</tr>
<tr>
<td class="{\$altbg}">{\$post_excerpt}<span style="position: relative; float: right;">{\$post_author} — {\$lastposttime}</span></td>
</tr>
EOF
),
Can anyone assist? Please ask more questions if I didn't explain well. Thank you!