- This topic has 6 replies, 2 voices, and was last updated 14 years, 5 months ago by imported_Ryan.
-
AuthorPosts
-
May 18, 2010 at 4:32 am #1460emjayMember
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. ” 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!
May 20, 2010 at 3:05 pm #8588imported_RyanMemberYour 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]May 21, 2010 at 6:34 am #8589emjayMemberHi,
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!
May 21, 2010 at 6:58 am #8590emjayMemberI forgot to mention one other thing I changed in the pixopoint css. I also changed the width of the drop down menu.
May 23, 2010 at 8:36 pm #8591emjayMemberThat 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.
May 23, 2010 at 8:44 pm #8592emjayMemberIt 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.
June 10, 2010 at 5:47 am #8593imported_RyanMemberThe plugin does not add <hr /> tags so something else must be causing that.
-
AuthorPosts
- You must be logged in to reply to this topic.