Visualizzazione dei risultati da 1 a 8 su 8

Discussione: Menu Spry IE

Visualizzazione discussione

  1. #1

    Menu Spry IE

    Ciao ggiovani!!
    sono appena approdata sul forum (che tra l'altro è utilisssssimissimo). La maggior parte dei problemi li ho risolti semplicemente guardando le precedenti discussioni, ma per il menù spry proprio non riesco a risolvere. Utilizzo dreamweaver CS3 e ho creato un menu spry verticale, personalizzando le dimensioni e il colore di sfondo. Su firefox funziona una meraviglia, MA su explorer, innanzitutto mi fa comparire una barra gialla che dice "per facilitare la sicurezza si e impedito a questa pagina di eseguire script o controllo activeX..." è possibile eliminarla? se gli dico "esegui" il mio menu spry perde le dimensini impostate e il colore di sfondo, come si vede dall'immagine.

    ho letto la discussione
    http://forum.html.it/forum/showthrea...readid=1446032

    MA non sono riuscita a risolvere;o(. Spero tanto che qualcuno mi sappia dare una mano, sto sclerando!!

    GRAZIE MILLEEEEEEEEEEEEEEEEEEEEEEEEE!!!!!!!!!!!!!
    bye bye

    Qui l'html che mi genera automaticamente il programma

    <ul id="MenuBar1" class="MenuBarVertical">[*]Politecnico di Torino
    <ul>[*]voce 1.1[*]voce 1.2[*]voce 1.3[/list]
    [*]Politecnico di Madrid
    <ul>[*]Voce 2.1[*]Voce 2.2[*]Voce 2.3[/list]
    [*]Tesi
    <ul>[*]voce 3.1 [*]voce 3.2[*]voce 3.3[/list]
    [/list]

    il css che mi crea automatico dice:

    /* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
    ul.MenuBarVertical
    {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: 8em;
    }
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
    {
    z-index: 1000;
    }
    /* Menu item containers, position children relative to this container and are same fixed width as parent */
    ul.MenuBarVertical li
    {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 8em;
    }
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
    {
    margin: -5% 0 0 95%;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: absolute;
    z-index: 1020;
    cursor: default;
    width: 8.2em;
    left: -1000em;
    top: 0;
    }
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
    {
    left: 0;
    }
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarVertical ul li
    {
    width: 8.2em;
    }

    /************************************************** *****************************

    DESIGN INFORMATION: describes color scheme, borders, fonts

    ************************************************** *****************************/

    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
    {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: xx-large;
    height: auto;
    width: 0px;

    }
    /* Submenu containers have borders on all sides */
    ul.MenuBarVertical ul
    {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: medium;
    margin: -5% 0 0 140%;
    }
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarVertical a
    {
    display: block;
    cursor: pointer;
    padding: 0.5em 0.75em;
    color: #D4145A;
    text-decoration: underline;
    width: 310px;
    }
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
    {
    background-color: #D4145A;
    color: #000000;
    }
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
    {
    background-color: #D4145A;
    color: #000000;
    }

    /************************************************** *****************************

    SUBMENU INDICATION: styles if there is a submenu under a given menu item

    ************************************************** *****************************/

    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenu
    {
    background-image: url(SpryMenuBarRight.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    }

    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenuHover
    {
    background-image: url(SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    }

    /************************************************** *****************************

    BROWSER HACKS: the hacks below should not be changed unless you are an expert

    ************************************************** *****************************/

    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarVertical iframe
    {
    position: absolute;
    z-index: 1010;
    }
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    {
    ul.MenuBarVertical li.MenuBarItemIE
    {
    display: inline;
    f\loat: left;
    background: #FFF;
    }
    }
    Immagini allegate Immagini allegate

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.