(2013-04-14, 10:28 PM)Leefish Wrote: You dont need to use images to give a rounded corner; use css border-radius.
I don't think its just a rounded corner, it also has a bit of styling.
There are built in images in my theme to be used, they just aren't and I can't figure out where to paste the url's.
Here's a bit of sample code from what I believe to be where the formatting issues occur (Global Template called prostats):
<div id="prostats_table">
{$remote_msg}
<table width="100%" border="0" cellspacing="{$theme[borderwidth]}" cellpadding="0" class="tborder">
<thead>
<tr><td colspan="{$num_columns}">
<table border="0" cellspacing="0" cellpadding="{$theme[tablespace]}" width="100%">
<tr class="thead">
<td><strong>{$lang->prostats_prostats}</strong></td>
<td style="text-align:{$ps_ralign};"><a href="" onclick="return prostats_reload();">{$lang->prostats_reload} <img src="{$mybb->settings['bburl']}/images/prostats/ps_reload.gif" style="vertical-align:middle;" alt="" /></a></td>
</tr>
</table>
</td>
</tr>
</thead>
<tbody>
{$trow_message_top}
<tr valign="top">
{$prostats_content}
</tr>
{$trow_message_down}
</tbody>
</table>
<br />
</div>
And a snippet from the template called forumdisplay_subforums
<div class="thead_main"><div class="thead_left"><div class="thead_right"><div class="thead_text">
<strong>{$lang->sub_forums_in}</strong>
</div></div></div></div>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="tcat" width="2%"> </td>
<td class="tcat" width="59%"><span class="smalltext"><strong>{$lang->forumbit_forum}</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_threads}</strong></span></td>
<td class="tcat" width="7%" align="center" style="white-space: nowrap"><span class="smalltext"><strong>{$lang->forumbit_posts}</strong></span></td>
<td class="tcat" width="15%" align="center"><span class="smalltext"><strong>{$lang->forumbit_lastpost}</strong></span></td>
</tr>
{$forums}
</table>
<div class="tfoot_main"><div class="tfoot_left"><div class="tfoot_right"></div></div></div>
<br />