thin blue line won’t go away

Forums Forums Menus thin blue line won’t go away

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1460
    emjay
    Member

    Hi,

    Everything is working beautifully with this plugin except for one thing.  I can’t get rid of a thin blue line in my main menu bar.  <img decoding=” title=”Undecided” /> I believe it’s coming from the Pixopoint menu plugin because it wasn’t there until I installed the pixopoint menu plugin. Any suggestions, words of wisdom or advice would be greatly appreciated.

    1. PixoPoint Menu plugin installed for my wordpress blog. 
    2. I altered the CSS menu for the plugin in the options menu in the WP admin area.  I changed the background color to none for the main menu and changed the text color for drop down menu items.
    3. I’m getting the same blue line in Firefox, Safari and Opera.  (Don’t use IE)
    4. url is: http://traveljabber.com/
    5. Sorry but I don’t know what the link would be for my CSS. 

    Thanks!

    #8588

    Your HTML is borked.

    The following:
    [code:1qmt0y4p]        <div id="menu">
    <!– BEGIN MAIN-NAV.PHP –>
    <ul>
    <!– To show "current" on the home page –>
    <li>
    </li>

    <!– PixoPoint Menu Plugin by PixoPoint Web Development ... http://pixopoint.com/pixopoint-menu/ –>

    <div id="pixopoint_menu1_wrapper">
    <div id="pixopoint_menu1">

    <ul class="sf-menu" id="suckerfishnav">
    [/code:1qmt0y4p]

    Would have been generated via something like this:
    [code:1qmt0y4p]        <div id="menu">
    <!– BEGIN MAIN-NAV.PHP –>
    <ul>
    <!– To show "current" on the home page –>
    <li>
    </li>
    <?php if ( function_exists( ‘pixopoint_menu’ ) ) {pixopoint_menu();} ?>[/code:1qmt0y4p]

    But needs to be something like this (to avoid the incorrectly nested list):
    [code:1qmt0y4p]        <div id="menu">
    <?php if ( function_exists( ‘pixopoint_menu’ ) ) {pixopoint_menu();} ?>[/code:1qmt0y4p]

    #8589
    emjay
    Member

    Hi,

    Thanks for getting back to me but unfortunately that didn’t work get rid of the line.  However, some observations.  When I changed the font color and added borders for the drop down menu items, that thin blue line is now only at the very end of the top menu.

    Any suggestions for getting rid of the rest of that line?

    Thanks!

    #8590
    emjay
    Member

    I forgot to mention one other thing I changed in the pixopoint css.  I also changed the width of the drop down menu.

    #8591
    emjay
    Member

    That thin blue line was the result of this:

    <?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?>
    <hr />

    Once I removed <hr /> (have NO idea where that came from) the line is gone.  Just an FYI if anyone else runs into this.

    #8592
    emjay
    Member

    It seems I can’t post the code that was creating that line.  When I posted the code, it created a thin blue line in this post! 

    So, I’ll try this again.  I put this code into the main-nav.php of my WP theme:  <?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?> 

    After this code, somehow this was on the following line: 
    hr /  between this <> 

    If I post the actual code, it appear as my earlier post and create a thin line.  So, hope this makes sense.

    #8593

    The plugin does not add <hr /> tags so something else must be causing that.

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