- This topic has 3 replies, 2 voices, and was last updated 15 years, 6 months ago by
imported_Ryan.
-
AuthorPosts
-
December 5, 2009 at 7:21 pm #1116
mrbaxter
MemberGreetings,
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]December 8, 2009 at 3:08 pm #7348imported_Ryan
MemberI’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.
December 9, 2009 at 1:37 am #7349mrbaxter
MemberHello,
thanks for the reply. That definately worked!! Thanks for your help! Merry Christmas.
” title=”Smiley” />
December 14, 2009 at 2:26 am #7350imported_Ryan
MemberGlad to hear it worked
” title=”Smiley” />
-
AuthorPosts
- You must be logged in to reply to this topic.