forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: wbeddoe on November 27, 2013, 02:27:08 pm

Title: Show Home | Contact | Login by default
Post by: wbeddoe on November 27, 2013, 02:27:08 pm
Hello All,

Is there an option to show the | Home | Contact | Login | links by default without having to click on the orange down-arrow carrot?

Gallery 1.5.22 (stable)
Title: Re: Show Home | Contact | Login by default
Post by: Αndré on November 27, 2013, 03:35:01 pm
The easiest solution would be to use a theme that show it by default, which should apply to the majority of available themes. If you want to keep your current theme, please post a link to your gallery.
Title: Re: Show Home | Contact | Login by default
Post by: wbeddoe on November 27, 2013, 03:41:40 pm
Theme is Rhinoswelt

http://www.popasmoke.com/newvisions/

Title: Re: Show Home | Contact | Login by default
Post by: Αndré on November 27, 2013, 04:00:33 pm
Open themes/rhinoswelt/style.css, find
Code: [Select]
#SYS_MENU {
    position:relative;
    width:800px;
    height:30px;
    left: 35px;
    top: 5px;
    margin:-10px;
    padding:0;
    z-index:1;
    visibility: hidden;
}
and replace with
Code: [Select]
#SYS_MENU {
    position:relative;
    width:800px;
    height:30px;
    left: 35px;
    top: 5px;
    margin:-10px;
    padding:0;
    z-index:1;
    visibility: visible;
}


To remove the now useless arrow button, open themes/rhinoswelt/theme.php, remove
Code: [Select]
                                        <td class="top_menu_bttn">
                                                <span class="top_menu_container"><a href="javascript:;" onmouseover="MM_showHideLayers('SYS_MENU','','show')">&nbsp;<img src="themes/rhinoswelt/images/icons/menu_down.png" border="0" height="16" width="16" alt="" style="vertical-align:middle;" />&nbsp;</a></span>
                                        </td>
                                        <td><img src="themes/rhinoswelt/images/menu_spacer.gif" width="8" height="35" border="0" alt="" /><br /></td>
completely.
Title: Re: Show Home | Contact | Login by default
Post by: wbeddoe on November 27, 2013, 05:06:05 pm
Thank you Αndré,

Perfect!

I appreciate your time.

Title: Re: Show Home | Contact | Login by default
Post by: Αndré on November 27, 2013, 05:25:06 pm
Please
tag your thread as "solved" by clicking on the "Topic Solved" button on the bar at the left hand side at the bottom of your thread.