Results 1 to 8 of 8

Thread: help me urgent

  1. #1
    Join Date
    Aug 2010
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default help me urgent

    thank you for this wonderful menu, I used in my site with the change of background color of tabs "# 3984BD" and Sub Menu Items # 9CBDDE for me what I should have my site, my concern is to the Print menu is printed in white is not visible

  2. #2
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    You have given so very little information:
    1. Use a descriptive title.
    2. What script are you using? There are many on this site.
    3. Can we see a link to your page, so we can help?

    Without more information, it won't be possible to help you...
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  3. #3
    Join Date
    Aug 2010
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default help me urgent vertical menu css: Nested Side Bar Menu

    thank you for the answer
    I used the Script is the vertical menu css: Nested Side Bar Menu, Capua site I have not yet published and still building but I did the test, by chance I made an impression one page everything is fine except the menu is printed as a white block

  4. #4
    Join Date
    Jul 2010
    Location
    Bridport, Dorset
    Posts
    58
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default

    Can we see your CSS and HTML so we can maybe spot an error?
    Are the pages not on the internet anywhere? Or are you building locally?

    The more info you give us the more likely it is you will get a good answer.

    When you say the menu is printed as a white block, I imagine it is missing its colour for some reason.

  5. #5
    Join Date
    Aug 2010
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default help me

    here is the CSS code that I use

    /* CSS Document */

    .sidebarmenu ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    font: bold 12px Verdana;
    width: 160px; /* Main Menu Item widths */
    border-bottom: 1px solid #ccc;
    }

    .sidebarmenu ul li{
    position: relative;
    }

    /* Top level menu links style */
    .sidebarmenu ul li a{
    display: block;
    width : auto !important; /* Largeur interprétée par tous les navigateurs excepté IE6 et inférieur */
    overflow: auto; /*force hasLayout in IE7 */
    color: white;
    text-decoration: none;
    padding: 4px;
    border-bottom: 1px solid #778;
    border-right: 1px solid #778;
    }

    .sidebarmenu ul li a:link, .sidebarmenu ul li a:visited, .sidebarmenu ul li a:active{
    background-color: #3984BD; /*background of tabs (default state)*//*I used this color */

    }

    .sidebarmenu ul li a:visited{
    color: white;
    }

    .sidebarmenu ul li a:hover{
    background-color: #9CBDDE; /*I used this color */
    }

    /*Sub level menu items */
    .sidebarmenu ul li ul{
    position: absolute;
    width: 170px; /*Sub Menu Items width */
    top: 0;
    visibility: hidden;
    }

    .sidebarmenu a.subfolderstyle{
    background: url(images/right.gif) no-repeat 97% 50%;
    }


    /* Holly Hack for IE \*/
    * html .sidebarmenu ul li { float: left; height: 1%; }
    * html .sidebarmenu ul li a { height: 1%; }
    /****************************/

  6. #6
    Join Date
    Aug 2010
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    /**********html code ********/

    <div class="sidebarmenu"><!--MENU VERTICAL CSS -->
    <ul id="sidebarmenu1"> <!--MENU 1 -->

    <li><a href="#">Législation</a></li>
    <ul>
    <li><a href="#">Décrets et Lois</a></li>
    </ul>
    <!--MENU 2 -->
    <li><a href="#">Tourisme</a>
    <ul> <!--SOUS MENU 1 -->
    <li><a href="#">Connaître mon Pays</a> </li>
    <li><a href="#">SDAT</a> </li>
    <li><a href="#">Investissement</a>
    <ul><li><a href="#">Investissement Touristique</a> </li>
    <li><a href="#">Zones d’Expansion Touristiques</a></li>
    </ul>
    </li>
    <li><a href="#">Plan de Qualité</a>
    <ul>
    <li><a href="#">Plan de Qualité du Tourisme</a> </li>
    <li><a href="#">Activités Professionnelles</a></li>
    <li><a href="#">Accés à la Marque</a></li>
    <li><a href="#">Engagements de Qualité</a>
    <ul>
    <li><a href="#">Catégories d'Engagements</a></li>
    <li><a href="#">Conditions d'Accés à la Marque</a></li>
    </ul></li>
    <li><a href="#">Engagements Nationaux de Qualité</a>
    <ul>
    <li><a href="#">l'Hôtellerie</a></li>
    <li><a href="#">la Restauration</a></li>
    <li><a href="#">l'Activités d'Agences et de Voyages</a></li>
    <li><a href="#">l'Activités de Loueur de Véhicules</a></li>
    </ul></li>
    <li><a href="#">Marque Qualité Tourisme</a></li>
    <li><a href="#">Procedures d'Adhésion</a></li>
    </ul>
    </li>

    <li><a href="#">Devenir Agent de Tourisme</a></li>
    <li><a href="#">Direction de Tourisme</a> </li>
    <li><a href="#">Liste des Agences de Voyages</a></li>
    </ul>
    </li>
    <!--MENU 3 -->
    <li><a href="#">Artisanat</a></li>
    <!--MENU 4 -->
    <li><a href="#">Formation</a></li>
    <!--MENU 5 -->
    <li><a href="#">Pôles Touristiques</a></li>
    <li><a href="#">Villages Touristiques</a></li>
    <li><a href="#">Liens Utiles</a></li>

    </ul>
    </div><!-- FIN MENU VERTICAL CSS -->

  7. #7
    Join Date
    Jul 2010
    Location
    Bridport, Dorset
    Posts
    58
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default

    Ok, I have used your code to make this page,
    and your menu is definitely blue...

    http://www.test.steptoes.co.uk/ddrive-forum-help.html
    could you explain your exact problem?

  8. #8
    Join Date
    Aug 2010
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default help me

    thank you because you answer me and you try to help me.
    my problem is the impression of a page, the menu is printed in white, so I did it in blue (I tried several colors is the same), the worst place that prints as same white block content (links) and what interests me to be more visible to the impression of a page for example.

    Note the links http://www.test.steptoes.co.uk/ddrive-forum-help.html test does not appear

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •