Any way to fix that? I think the issue is that the size of the font is hardcoded in the HTML file instead of being on CSS to determine the size.
using phpBB 3.1.10 Prosilver.
UPDATE:
What I ended up doing is removing this line:
font-size: 1.2em;
under the flag_users.html
OPEN:
/rmcgirr83/nationalflags/styles/prosilver/template/flag_users.html
FIND:
Code: Select all
<dd class="lastpost">
<span style="margin-top:5px;font-size: 1.2em;">{user_row.JOINED}</span>
</dd>
Code: Select all
<dd class="lastpost">
<span style="margin-top:5px;">{user_row.JOINED}</span>
</dd>