Dropdown Menu offcentered and closes upon trying to click

Forums Forums Menus Dropdown Menu offcentered and closes upon trying to click

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1116
    mrbaxter
    Member

    Greetings,

    I am having some issues with my site and the menu bar. Hopefully someone can assist. Thanks for your time!

    Michael Baxter

    Are you using one of our WordPress plugins? If so, which one?
    [color=red:27p8h290]Pixopoint Menu[/color:27p8h290]

    Where is your CSS?
    [color=red:27p8h290]I am using Fantastico to install wordpress and plugins. Hope that helps![/color:27p8h290]

    What modifications have you made to the CSS?
    [color=red:27p8h290]As instructions stated in header.php

    <div id="container">
        <div id="header">

    <h1 class="blogtitle"> <a href="<?php echo get_option(‘home’); ?>/"><?php bloginfo(‘name’); ?></a></h1>
    <a href="<?php bloginfo(‘rss2_url’); ?>" class="rssicon" title="RSS"></a>
    <h3 class="slogantext"><?php bloginfo(‘description’); ?></h3>
        </div>
        <ul id="NaviBar">
            <?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();}; ?>
                    <div></div>
            </form>
           
        </ul>[/color:27p8h290]

    What browsers are you having problems with?
    [color=red:27p8h290]Internet Explorer 8: Submenu offset and arrow showing submenu don’t work, cant click on submenu listings
    Firefox: Shows the arrows in menu for submenus, won’t allow to click submenu listings
    Internet Explorer 7: Shows arrows, dropdown menu is offset to right but able to be clicked on[/color:27p8h290]

    What is the URL for your site?
    [color=red:27p8h290]www.haydencollins.org/support[/color:27p8h290]

    #7348

    I’m guessing your problem is related to the following issue:

    You currently have something like this in your theme:
    [code:3sp85j32]<ul id="NaviBar">
    <?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?>
    </ul>[/code:3sp85j32]

    But it needs to look like this:
    [code:3sp85j32]
    <?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?>
    [/code:3sp85j32]

    The menu adds div tags which can not be placed inside a UL tag without corresponding LI tags (you currently have an unordered list without any list items which is invalid code and hence will likely cause lots of glitches.

    #7349
    mrbaxter
    Member

    Hello,

    thanks for the reply. That definately worked!! Thanks for your help! Merry Christmas.

    <img decoding=” title=”Smiley” />

    #7350

    Glad to hear it worked <img decoding=” title=”Smiley” />

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