- This topic has 9 replies, 3 voices, and was last updated 15 years, 6 months ago by imported_Ryan.
-
AuthorPosts
-
May 12, 2009 at 4:11 pm #802twofrogsMember
I uploaded the Multi-level Navigation Plugin in my WordPress site http:/www.goodbyelyme.com/.
How do I remove the blue bar and the extra menu items that appeared?
thanks,
Greg
May 13, 2009 at 6:07 am #6156imported_RyanMemberI think you may have missed instructions 3 and 4:
May 13, 2009 at 11:51 am #6157twofrogsMemberThanks for the tip, it’s a little better after adding that. Can I get rid of the background color all together?
It’s also appended these menu items that I do not want:
Home Categories Archives Links
Also, the hover color doesn’t fall behind the text. it’s slightly above it. What can I do to get this to fall behind the text?
thanks,
Greg
May 14, 2009 at 2:55 pm #6158AnonymousMemberI am also having trouble with this. I’ve used the CSS generator to configure a nav menu that I really like…but where is the CSS that is supposed to be generated? Is it supposed to appear on the page for me to copy? Is it supposed to automatically go to my style.css somehow? Where is the code??
May 14, 2009 at 3:06 pm #6159AnonymousMemberOops…I figured it out. I was customizing the menu using the TEMPLATE generator which was off to the left of every page. When I turned that off, I was able to see the CSS generator I am supposed to use for the menu, and get the code I needed.
May 16, 2009 at 11:15 am #6160imported_RyanMember[quote:1ofn6bbu]Thanks for the tip, it’s a little better after adding that. Can I get rid of the background color all together?[/quote:1ofn6bbu]
Yes, by following the instructions I posted a link to earlier. I took a look at your site and can’t see any blue background so I’m guessing you have fixed this now anyway.
[quote:1ofn6bbu]Home Categories Archives Links[/quote:1ofn6bbu]
This is also covered in the instructions. If you follow them this should all become clear.
[quote:1ofn6bbu]Also, the hover color doesn’t fall behind the text. it’s slightly above it. What can I do to get this to fall behind the text?[/quote:1ofn6bbu]
You have some invalid code in your pages. I’m guessing it looks something like this in the theme:
[code:1ofn6bbu] <div id="nav">
<ul><!– <?php wp_list_pages(); ?> –>
<?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?>
</ul>
</div> [/code:1ofn6bbu]You could try changing to this:
[code:1ofn6bbu]<?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?>
[/code:1ofn6bbu]
The DIV tag is probably styling the menu (which is bad, since the plugin isn’t doing it) and the UL tag creates invalid code since it doesn’t contain a list item.[quote:1ofn6bbu]Oops…I figured it out. I was customizing the menu using the TEMPLATE generator[/quote:1ofn6bbu]
Sorry about the confusion with the template generator. It is a little confusing if you are using both of them at the same time. I’m working on a new system which will avoid that confusion, things going to plan (they rarely do) it should be ready in a few months.May 17, 2009 at 3:10 am #6161twofrogsMemberThanks, that fixed all the problems!
May 19, 2009 at 6:08 am #6162imported_RyanMemberGood to hear ” title=”Smiley” />
May 22, 2009 at 6:59 am #6163AnonymousMemberI pasted the css code generated into wp-contentthemesdefaultstyle.css but nothing happens to the menu.
i also tried pasting the code into header.php. Please helpMay 24, 2009 at 9:21 am #6164imported_RyanMemberInstructions for where to put the CSS are available here:
http://wordpress.org/extend/plugins/mul … tallation/ -
AuthorPosts
- You must be logged in to reply to this topic.