The [color=green]Manage Invoices Page[/color] shows a nice set of [b]graphics inline[/b] with each record (although in MSIE the icons are truncated at the bottom due to the css having set the row height slightly smaller than it's liking).
In order to get the same feature with [color=red]Manage Invoice Preferences[/color], the file [b]/templates/default/preferences/manage.tpl[/b] must edited as below. Lines 13-15[code] <col style='width:10%;' /> <col style='width:10%;' /> <col style='width:40%;' />[/code]Replace with[code] <col style='width:4%;' /> <col style='width:6%;' /> <col style='width:50%;' />[/code]
<!-- Edit View --> <a class="index_table" title="{$LANG.edit_view_tooltip} {$LANG.inv_pref} {$preference.pref_id}" href="index.php?module=preferences&view=details&submit={$preference.pref_id}&action=edit"> <img src="images/common/edit.png" height="16" border="-5px" padding="-4px" valign="bottom" /></a> </td>[/code]In a similar way, we can make all [b]manage[/b] pages appear with nice [b]inline graphics[/b].
The original [b]/templates/default/invoices/manage.tpl[/b] has redundant [b]</a>[/b] at lines [b]68[/b] and [b]74[/b] - [b]both lines can be deleted[/b].
In the first post in this thread, for the last replace:- The {$LANG.quick_view_tooltip} can be replaced with {$LANG.view} The {$LANG.edit_view_tooltip} can be replaced with {$LANG.edit}