Advanced Threads Icon [Paid] [Deleted]

Status
Not open for further replies.
Is there anyway to move the icons so they'd appear where they Security Shield with the question mark is?

screenshot_thread_list-png.38817
 
******* updated ******* - Advanced Threads Icon with a new update entry:

18/09/2014: Version 1.3.1

- Minor bug fixes.
- Update addon's library to fit with new privacy policies at http://*******.com/privacy-policy/

Read the rest of this update entry...
 
******* updated ******* - Advanced Threads Icon with a new update entry:

14/10/2014: Version 1.3.2

- Fixed error on image sprites.
- Minor bug fixes.

Read the rest of this update entry...
 
Here is the solution to a problem found:

Before
before.webp

After:
after.webp

  • Replace BRATI_thread_icon_edit template with this:
Code:
<xen:if is="{$threadIcons} && {$canUseIcon}">
  
    <xen:set var="$noIcon">
        <xen:if is="!{$thread.icon_id} && !{$xenOptions.BRATI_defaultIcon}">checked="checked"</xen:if>
    </xen:set>
    <h3 class="textHeading">{xen:phrase thread_icons}</h3>
    <dl class="ctrlUnit">
        <dt></dt>
        <dd>
            <xen:foreach loop="$threadIcons" value="$threadIcon">
                <xen:set var="$checked">
                    <xen:if is="{$thread.icon_id} == {$threadIcon.icon_id} || {$xenOptions.BRATI_defaultIcon} == {$threadIcon.icon_id}">checked="checked"</xen:if>
                </xen:set>
                <span class="threadIcon">
                    <input type="radio" name="threadIcon" value="{$threadIcon.icon_id}" {$checked} />
                    <xen:include template="icon_list_item" />
                </span>
            </xen:foreach>
        </dd>
    </dl>
  
    <dl class="ctrlUnit">
        <dt><label for="ctrl_thread_no_icon">{xen:phrase no_icon}:</label></dt>
        <dd><input type="radio" name="threadIcon" value="" {$noIcon} /></dd>
    </dl>
  
</xen:if>
 
Status
Not open for further replies.
Top Bottom