Posts: 42
Threads: 10
Joined: Nov 2018
12-15-2018, 05:02 PM
(This post was last modified: 12-15-2018, 05:03 PM by amanda_2011.)
Search page looks responsive on this forum but it's not responsive in the upgrade.
I'm not able to upload an attachment. Will test in this post if I can on this forum.
Nope, didn't work posting an attachment.
Posts: 461
Threads: 54
Joined: Jul 2017
(12-15-2018, 05:02 PM)amanda_2012 Wrote: Search page looks responsive on this forum but it's not responsive in the upgrade.
I'm not able to upload an attachment. Will test in this post if I can on this forum.
Nope, didn't work posting an attachment.
Please mention theme name.
Which theme is this ?
Posts: 42
Threads: 10
Joined: Nov 2018
(12-15-2018, 05:12 PM)WallBB Wrote: (12-15-2018, 05:02 PM)amanda_2012 Wrote: Search page looks responsive on this forum but it's not responsive in the upgrade.
I'm not able to upload an attachment. Will test in this post if I can on this forum.
Nope, didn't work posting an attachment.
Please mention theme name.
Which theme is this ?
Focus Responsive
Posts: 461
Threads: 54
Joined: Jul 2017
(12-15-2018, 05:14 PM)amanda_2012 Wrote: (12-15-2018, 05:12 PM)WallBB Wrote: (12-15-2018, 05:02 PM)amanda_2012 Wrote: Search page looks responsive on this forum but it's not responsive in the upgrade.
I'm not able to upload an attachment. Will test in this post if I can on this forum.
Nope, didn't work posting an attachment.
Please mention theme name.
Which theme is this ?
Focus Responsive
It is fixed in the theme, I remember you have custom modification hence these are the changes that will make it faster for you
Template - post_attachments
Code:
<br />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>{$lang->attachments}</strong></td>
</tr>
<tr>
<td class="tcat smalltext">{$lang->attach_quota} <a href="usercp.php?action=attachments">{$lang->view_attachments}</a></td>
</tr>
{$newattach}
{$attachments}
</table>
Template - post_attachments_attachment
Code:
<tr>
<td class="trow1" style="white-space: wrap">{$attachment['icon']}<br/>
{$attachment['filename']} ({$attachment['size']})
<br/>{$attach_mod_options} {$attach_rem_options} {$postinsert}</td>
</tr>
Template - post_attachments_new
Code:
<tr>
<td class="trow1" style="white-space: nowrap"><strong><i class="fa fa-paperclip" aria-hidden="true"></i> {$lang->new_attachment}</strong></br>
<input type="file" name="attachments[]" size="30" class="fileupload" multiple="multiple" /></br>
{$attach_update_options} {$attach_add_options}</td>
</tr>
/Closed