Changeset 2048 in ExiteCMS


Ignore:
Timestamp:
11/17/08 10:33:06 (3 years ago)
Author:
WanWizard
Message:

fixed layout issue
fixed wrong color for menu items in the header

Location:
themes/public/IcyXmas/php-files/themes/IcyXmas
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • themes/public/IcyXmas/php-files/themes/IcyXmas/exitecms.css

    r2047 r2048  
    9898 
    9999                        /* header menu links */ 
    100 .headermenuitem         { } 
     100.headermenuitem         { color:#fff; } 
    101101 
    102102/* --- Panels ---------------------------------------------- */ 
  • themes/public/IcyXmas/php-files/themes/IcyXmas/templates/templates/_header.tpl

    r2047 r2048  
    143143<table align='center' width='{$smarty.const.THEME_WIDTH}' cellspacing='0' cellpadding='0' class='sub-header'> 
    144144    <tr> 
    145         <td> 
     145        <td class='headermenu'> 
    146146            <a href='.' onclick='fontGroter(-0.1); return false' title='Decrease font-size'><img src='{$smarty.const.THEME}images/minus.gif' alt='' border='0' /></a><a href='.' onclick='fontReset(0.7); return false' title='Restore default font-sizes'><img src='{$smarty.const.THEME}images/reset.gif' hspace='2' alt='' border='0' /></a><a href='.' onclick='fontGroter(0.1); return false' title='Increase font-size'><img src='{$smarty.const.THEME}images/plus.gif' alt='' border='0' /></a> 
    147             {if $new_posts} 
    148                 <a href='{$smarty.const.BASEDIR}modules/forum_threads_list_panel/new_posts.php'><img src='{$smarty.const.THEME}images/newposts.gif' height='9' alt='{$locale.028}' /></a> 
    149             {/if} 
    150             {if $new_pm} 
    151                 <a href='{$smarty.const.BASEDIR}pm.php?action=show_new'><img src='{$smarty.const.THEME}images/newmsgs.gif' height='9' alt='' /></a> 
    152             {/if} 
     147            <div id='new_posts_header' style='display:inline;'> 
     148                {if $new_posts} 
     149                    <a href='{$smarty.const.BASEDIR}modules/forum_threads_list_panel/new_posts.php'><img src='{$smarty.const.THEME}images/newposts.gif' height='9' alt='{$locale.028}' /></a> 
     150                {/if} 
     151            </div> 
     152            <div id='new_pm_header' style='display:inline;'> 
     153                {if $new_pm} 
     154                    <a href='{$smarty.const.BASEDIR}pm.php?action=show_new'><img src='{$smarty.const.THEME}images/newmsgs.gif' height='9' alt='' /></a>&nbsp; 
     155                {/if} 
     156            </div> 
    153157            {section name=index loop=$headermenu} 
    154                 {if !$smarty.section.index.first} &middot;{/if} <a href='{$headermenu[index].link_url}' {if $headermenu[index].link_window == 1}target='_blank' {/if}><span class='small'>{$headermenu[index].link_name}</span></a> 
     158                {if $smarty.section.index.first} &nbsp;{else} &middot;{/if} <a href='{$headermenu[index].link_url}' {if $headermenu[index].link_window == 1}target='_blank' {/if}><span class='headermenuitem'>{$headermenu[index].link_name}</span></a> 
    155159            {/section} 
    156160        </td> 
    157         <td align='right'> 
    158             <table cellpadding='0' cellspacing='0'> 
    159                 <tr> 
    160                     <td id='total-downloads' class='boxheader'> 
    161                         {$bartitle}&nbsp;:&nbsp;{$bartotal}&nbsp; 
    162                     </td> 
    163                 </tr> 
    164             </table> 
     161        <td align='right' class='headermenu'> 
     162            {$smarty.now|date_format:"subheaderdate"}&nbsp; 
    165163        </td> 
    166164    </tr> 
Note: See TracChangeset for help on using the changeset viewer.