Drop down display slightly off

Forums Forums Menus Drop down display slightly off

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #569

    Hello,

    I’ve gone through the posts here and haven’t found anything that seems to be exactly my problem.  I’ve used the css generator to change the colors in the dropdown menu and I have changed the width of the header menu in order to center things correctly.  I’ve only modified the css in the style.php file within the plugin folder.  Here is the link to my site http://beta.ohiohumanities.org/

    Everything works great, however, the dropdown menus have little things off in the way that they display, ie. lots of extra blank space covering the theme, different sized boxes for pages, etc.  Is there any way to easily tighten up the look?  I’m sorry to be vague but I’m a little lost, I think taking a look at my site will make the problems clear.

    Thanks so much and great plugin!
    Jim

    #4917

    You have invalid code in there:
    [code:3a5j6vls] <div id="tabs">

    <ul>

    <!– Multi-level Navigational Plugin by PixoPoint Web Development ... http://pixopoint.com/multi-level-navigation/ –>
    <ul id="suckerfishnav"><li>[/code:3a5j6vls]

    That will be caused by something like the following in your theme:
    [code:3a5j6vls]<div id="tabs">
    <ul>
    <?php pixopoint_menu(); ?>
    </ul>
    </div>[/code:3a5j6vls]

    To be valid, it needs to look like this (can’t have UL’s inside another UL without a LI):

    [code:3a5j6vls]<div id="tabs">
    <?php pixopoint_menu(); ?>
    </div>[/code:3a5j6vls]

    The .tab CSS is possibly messing it up too, so you may need to either remove some of the styling for that, or remove the DIV tag entirely like this:

    [code:3a5j6vls]<?php pixopoint_menu(); ?>[/code:3a5j6vls]

    #4918

    If you still can’t figure it out. Upgrade to the latest version, put it into maintenance mode (there’s an option for this in the admin page for the latest version) and post back when you’ve done that. With it in maintenance mode it will be easier for me to test it to figure out what is going wrong.

    #4919

    Thanks so much Ryan- I will try all of this and get back to you!

    #4920

    Hi Ryan,

    After downloading the new version of the plugin, everything has sorted itself out, at least for now.  I’m going to have to go back and re edit some things (centering the new menu and maybe changing the text size, but the other more confusing problems seem to have been solved!)  Thanks so much for your help!

    Jim

    #4921

    Glad to hear it is working for you now <img decoding=” title=”Smiley” />

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