coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: oren99 on April 23, 2007, 01:50:52 AM

Title: help with sub menu in "tentacle" template
Post by: oren99 on April 23, 2007, 01:50:52 AM
in this template, in order to see the system menu you need to hover the mouse on the "@" gif.
can someone help me make this menu visible by default? without hovering?
new users may not find it.

thanks,
Oren.

p.s.
if you need to see it my site is: http://www.show-car.net/
Title: Re: help with sub menu in "tentacle" template
Post by: Joachim Müller on April 23, 2007, 07:33:09 AM
Change the visibility-attribute in your CSS, edit the piece of JavaScript that toggles the rollover.
Edit themes/tentacle/style.css (http://www.show-car.net/themes/tentacle/style.css), find#SYS_MENU {
        position: relative;
        bottom: 00px;
        left: 70px;
        width:600px;
        height:15px;
        z-index:1;
        text-align:left;
        margin:0;
        padding:0;
        visibility: hidden;
}
and replace with#SYS_MENU {
        position: relative;
        bottom: 00px;
        left: 70px;
        width:600px;
        height:15px;
        z-index:1;
        text-align:left;
        margin:0;
        padding:0;
        visibility: visible;
}


Edit themes/tentacle/theme.php (http://www.show-car.net/themes/tentacle/theme.php), find                                        <td>
                                                <a href="javascript:;" onmouseover="MM_showHideLayers('SYS_MENU','','show')"><img alt="" src="themes/tentacle/images/navbar_05.gif" width="36" height="32" border="0" /></a>
                                        </td>
and comment out by replacing it with                                        <!--<td>
                                                <a href="javascript:;" onmouseover="MM_showHideLayers('SYS_MENU','','show')"><img alt="" src="themes/tentacle/images/navbar_05.gif" width="36" height="32" border="0" /></a>
                                        </td>-->


Joachim

P.S. [ot] Your google analytics code should go at the very end of your body (into a new line before </body>) of template.html, not right after the <body>-tag [/ot]
Title: Re: help with sub menu in "tentacle" template
Post by: oren99 on April 23, 2007, 10:50:30 AM
thanks a lot for a great help  :)
i see you know this system very well, i have another thing i cant fix:
the SEF urls. i see a lot of post about it but no real guide step by step.
i have on my current host 6 other sites all with rewrite urls working great.
ive added the htaccess file and installed the plugin but i just get errors.
can you please tell me what i need to do as this is a very important thing to have for me.

thanks a lot for all your help.
Title: Re: help with sub menu in "tentacle" template
Post by: Joachim Müller on April 23, 2007, 01:46:56 PM
We have a strict "one question per thread" policy that you agreed to respect when signing up. Locking this thread >:(.