help with sub menu in "tentacle" template help with sub menu in "tentacle" template
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

help with sub menu in "tentacle" template

Started by oren99, April 23, 2007, 01:50:52 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

oren99

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/

Joachim Müller

Change the visibility-attribute in your CSS, edit the piece of JavaScript that toggles the rollover.
Edit 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, 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]

oren99

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.

Joachim Müller

We have a strict "one question per thread" policy that you agreed to respect when signing up. Locking this thread >:(.