5
Hello Mithrandir & Dave_L -
Thank you for your help.
Yup...I hit the source while you both were writing your answers and successfully made the changes.
For completeness sake and future generations...
original XOOPS 2.0.6 code modules/system/templates/blocks/system_block_user.html
<table cellspacing="0">
<tr>
<td id="usermenu">
<a class="menuTop" href="<{$xoops_url}>/user.php"><{$block.lang_youraccount}>a>
<a href="<{$xoops_url}>/edituser.php"><{$block.lang_editaccount}>a>
<a href="<{$xoops_url}>/notifications.php"><{$block.lang_notifications}>a>
<a href="<{$xoops_url}>/user.php?op=logout"><{$block.lang_logout}>a>
<{if $block.new_messages > 0}>
<a class="highlight" href="<{$xoops_url}>/viewpmsg.php"><{$block.lang_inbox}> (<span style="color:#ff0000; font-weight: bold;"><{$block.new_messages}>span>)a>
<{else}>
<a href="<{$xoops_url}>/viewpmsg.php"><{$block.lang_inbox}>a>
<{/if}>
<{if $xoops_isadmin}>
<a href="<{$xoops_url}>/admin.php"><{$block.lang_adminmenu}>a>
<{/if}>
td>
tr>
table>
Change to move Administrative Menu item to top of User Menu Block <table cellspacing="0">
<tr>
<td id="usermenu">
<{if $xoops_isadmin}>
<a class="menuTop" href="<{$xoops_url}>/admin.php"><{$block.lang_adminmenu}>a>
<a href="<{$xoops_url}>/user.php"><{$block.lang_youraccount}>a>
<{else}>
<a class="menuTop" href="<{$xoops_url}>/user.php"><{$block.lang_youraccount}>a>
<{/if}>
<a href="<{$xoops_url}>/edituser.php"><{$block.lang_editaccount}>a>
<a href="<{$xoops_url}>/notifications.php"><{$block.lang_notifications}>a>
<a href="<{$xoops_url}>/user.php?op=logout"><{$block.lang_logout}>a>
<{if $block.new_messages > 0}>
<a class="highlight" href="<{$xoops_url}>/viewpmsg.php"><{$block.lang_inbox}> (<span style="color:#ff0000; font-weight: bold;"><{$block.new_messages}>span>)a>
<{else}>
<a href="<{$xoops_url}>/viewpmsg.php"><{$block.lang_inbox}>a>
<{/if}>
td>
tr>
table>
After saving the changes to the file,
Go to Adminstration Menu, Module Admin, Click on
SysAdmin update icon to recompile the template and store into the database. View and celebrate the results of your work. What could be more fun than that.