- This topic has 5 replies, 2 voices, and was last updated 15 years, 9 months ago by imported_Ryan.
-
AuthorPosts
-
January 22, 2009 at 7:56 pm #569jdchumanitiesMember
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!
JimJanuary 23, 2009 at 12:59 am #4917imported_RyanMemberYou 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]
January 23, 2009 at 1:01 am #4918imported_RyanMemberIf 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.
January 23, 2009 at 6:48 pm #4919jdchumanitiesMemberThanks so much Ryan- I will try all of this and get back to you!
January 26, 2009 at 9:15 pm #4920jdchumanitiesMemberHi 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
February 7, 2009 at 11:39 pm #4921imported_RyanMemberGlad to hear it is working for you now ” title=”Smiley” />
-
AuthorPosts
- You must be logged in to reply to this topic.