center the bar and no dropdown past 1 page?

Forums Forums Menus center the bar and no dropdown past 1 page?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1152
    Anonymous
    Member

    Hi, first of all great plugin  <img decoding=” title=”Cheesy” />

    I have 2 questions. I have been tinkering away on the html but can’t get 2 items right:

    [b:31106wuf]First of all[/b:31106wuf] a fixed width that centers over the rest of my page elements, I am almost there but not completely. It is a little bit of center to the left.

    [b:31106wuf]2nd[/b:31106wuf] I can’t see more that 1 drop down child menu item? F.i. in "TRAININGEN" I have 3 child menu’s but can only see the first one when I click on the parent?  ???

    If you could give me a hand I would be most grateful  <img decoding=” title=”Cheesy” />

    My site: http://www.sokrates-academy.com

    [u:31106wuf][b:31106wuf]
    CSS IN APPEARANCE:[/b:31106wuf][/u:31106wuf]

    [color=red:31106wuf][i:31106wuf]#suckerfishnav {
        background:#eeeeee;
        font-size:12px;
        font-family:verdana,sans-serif;
        font-weight:;
    text-transform: Uppercase;
        width:1050px;
        }

    #suckerfishnav, #suckerfishnav ul {
        float:left;
        list-style:none;
        line-height:30px;
        padding:10; 0px 10px 30px;
        border:1px solid #dddddd;
        margin:10;
        width:1050px;
        }
    #suckerfishnav a {
        display:block;
        color:#eeeeee;
        text-decoration:none;
        padding:0px 10px;
        }
    #suckerfishnav li {
        float:left;
        padding:0; 0; 0; 20;
        }
    #suckerfishnav ul {
        position:absolute;
        left:-900em;
        height:auto;
        width:151px;
        font-weight:normal;
        margin:0;
        line-height:1;
        border:0;
        border-top:1px solid #dddddd;
        }
    #suckerfishnav li li {
        width:149px;
        border-bottom:1px solid #dddddd;
        border-left:1px solid #dddddd;
        border-right:1px solid #dddddd;
        font-weight:
        font-family:verdana,sans-serif;
        }
    #suckerfishnav li li a {
        padding:4px 10px;
        width:130px;
        font-size:10px;
        color:#eeeeee;
        }
    #suckerfishnav li ul ul {
        margin:-21px 0 0 150px;
        }
    #suckerfishnav li li:hover {
        background:#eeeeee;
        }
    #suckerfishnav li ul li:hover a, #suckerfishnav li ul li li:hover a, #suckerfishnav li ul li li li:hover a, #suckerfishnav li ul li li li:hover a {
        color:#cc0099;
        }
    #suckerfishnav li:hover a, #suckerfishnav li.sfhover a {
        color:#cc0099;
        }
    #suckerfishnav li:hover li a, #suckerfishnav li li:hover li a, #suckerfishnav li li li:hover li a, #suckerfishnav li li li li:hover li a {
        color:#cc0099;
        }
    #suckerfishnav li:hover ul ul, #suckerfishnav li:hover ul ul ul, #suckerfishnav li:hover ul ul ul ul, #suckerfishnav li.sfhover ul ul, #suckerfishnav li.sfhover ul ul ul, #suckerfishnav li.sfhover ul ul ul ul {
        left:-999em;
        }
    #suckerfishnav li:hover ul, #suckerfishnav li li:hover ul, #suckerfishnav li li li:hover ul, #suckerfishnav li li li li:hover ul, #suckerfishnav li.sfhover ul, #suckerfishnav li li.sfhover ul, #suckerfishnav li li li.sfhover ul, #suckerfishnav li li li li.sfhover ul {
        left:auto;
        background:#eeeeee;
        }
    #suckerfishnav li:hover, #suckerfishnav li.sfhover {
        background:#eeeeee;
        }[/i:31106wuf][/color:31106wuf]

    #7476

    Wow, you have a lot of javascript on your page! That will be killing your page load times, not to mention the massive number of CSS files you are loading up. You should never load that much junk onto your page as it sky rockets the number of http requests the browser needs to make and hence the page load time shoots up accordingly.

    Your theme in particular is loading it’s scripts incorrectly as it is reloading a second copy of jQuery as well as the built in WordPress one. This is caused by the theme not using the enqueue method of loading scripts within WordPress.

    Your other major problem is that the dropdowns are disappearing behind the gallery box on your home page. You can fix that by adding the following to your CSS:
    [code:31hhr5cv]
    #suckerfishnav li ul {z-index:200;}
    [/code:31hhr5cv]

    None of that is related to the problems you mentioned above though.

    The nested pages you mentioned aren’t showing up in the HTML, so I’m guessing that is because you have changed the plugin settings to only load the pages menu down to that level.

    Your menu appears to be centered on the page, so I’m not exactly sure what you are trying to do centering wise.

    #7477
    Anonymous
    Member

    Wow, thanks for the feedback  <img decoding=” title=”Undecided” />

    I didn’t create the theme though so no clou what I can do about the JS overload. I do agree that the load time is terrible.. Any suggestions what I should eliminate then? I did add plugins but not that much?

    I centered the bar yesterday myself with the help of a friend so indeed that problem is no longer there.

    I pasted the code you supplied in the css in the navigation bar but no luck.

    We deactivated the featured content yesterday and then the menu was fine so that is the problem rather than faulty settings. Any thoughts?

    #7478

    Most of your extra files seem to have gone. I’m guessing whatever plugins you deactivated have removed the bulk of them.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.