Viewing 9 replies - 1 through 9 (of 9 total)
  • Do you want them all to be parent menu items?

    If so them drag the menu items to all line up as parent menu items.

    Michael

    Thread Starter cloudstr210

    (@cloudstr210)

    No, i want the login to be under the panel and the categories under the pages.

    Thanks

    Thread Starter cloudstr210

    (@cloudstr210)

    i want the log in to be in the sub menu of panel and categories as sub menu of the pages..

    thank you.

    judging from the screenshots, this is a css issue.

    what css styles are you using for the menu?

    link to your site to see this live?

    Thread Starter cloudstr210

    (@cloudstr210)

    This is my site phshare.tk

    and my menu CSS

    .menu-bar {
    background: url(‘images/menubg.gif’) no-repeat;
    padding:10px 0 40px 0;
    margin:0 0 5px 0;
    }

    ul.menu {
    float: left;
    margin: 0;
    padding: 0 15px;
    list-style-type: none;
    }

    ul.menu li {
    float: left;
    }

    ul.menu li a {
    float: left;
    display: block;
    height: 20px;
    padding: 4px 15px 0 15px;
    color: #0066cc;
    font-weight:normal;
    font-size:10pt;
    }

    ul.menu li a:link,
    ul.menu li a:visited {
    color: #0066cc;
    }

    ul.menu li a:hover,
    ul.menu li a:active {
    color: #0066cc;
    text-decoration: none;
    background-color:#f1f9ff;
    border:1px solid #a5d6f8;
    padding: 3px 14px 0 14px;
    }

    ul.menu li.current_page_item a:link,
    ul.menu li.current_page_item a:visited {
    color: #0066cc;
    text-decoration: none;
    }

    ul.menu li.current_page_item a:hover {
    color: #0066cc;
    text-decoration: none;
    background-color:#f1f9ff;
    border:1px solid #a5d6f8;
    }

    Home someone help me..
    Thanks!

    if you want the submenu to dropout on hover, thn addding some styles such as the following might work:

    ul.menu ul ul { display:none; position: absolute; z-index:500; top:25px; left: 0px; list-style-type: none; background: #fff; }
    ul.menu li { position: relative; }
    ul.menu li:hover ul { display:block;}
    ul.menu ul ul li { left:-40px; }

    (only checked in firefox)

    Thread Starter cloudstr210

    (@cloudstr210)

    Thank you sir. It Works!

    Thread Starter cloudstr210

    (@cloudstr210)

    I got new problem..

    look at my site : phshare.tk

    1. The submenus under submenus doesnt show up..
    example ( about is under the categories but it show below it)
    ( the test submenu is under by login but it show below it with lines)

    2. LONG SUB MENU become compressed.
    3. And how to center the submenus ?

    Thanks!

    for a full multilevel css dropdown menu, check the code of twenty ten’s menu, for instance; or search the web for ‘css dropdown’; or search for a plugin.

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Headache on my Menus’ is closed to new replies.