Fix for PixoPoint or Suckerfish Menu Expanding Behind Objects
- Saturday, September 25, 2010, 21:12
- Hack
- Views: 177
- 3 comments
If you are using PixoPoint Menu for WordPress or Suckerfish menu for Joomla or any similar such menu which happens to expand or hide behind embedded objects in your page, like flash objects, image gallery / rotators, other embedded objects (google adsense advertisments), then here is the solution.
The solution is very simple, you just need to add a container div that wraps your menu.
Open your template’s header.php file or index.php file depending on where you are calling the menu script. For PixoPoint menu it would look like this:
<?php if (function_exists('pixopoint_menu')) {pixopoint_menu();} ?>
Replace it with this
<div id="menu-container"><?php if (function_exists('pixopoint_menu')) {pixopoint_menu();} ?></div>
Save the file and then in your template’s CSS file (style.css or the corresponding css file), add the following line at the end
#menu-container {position:relative;z-index:99;
That should be all, now your menu should appear on top of all embedded content. More information about this issue is available here.
Possibly related posts (generated automatically):
- Replacement for Basic Gnome Menu in Ubuntu – Mint Menu
- Enable Gnome Menu and Pop-up Menu Transparency using Compiz
- Speed Up Gnome Menu
- Convert Any Document (Word) to PDF For Free (Windows 7)
- Add Launch Terminal Here Context Menu in Nautilus
- Spice Up Gnome Menu with GnoMenu (Ubuntu 9.10 & Fedora 12)
- How to Convert a WordPress Blog to Blogspot (Blogger)
- Linux Command to Fix Permissions for Files and Directories
You might also like
| Replacement for Basic Gnome Menu in Ubuntu – Mint Menu Lets be frank,... | Speed Up Gnome Menu Open a text... | Launch Application from Any Terminal or Create Shortcut in Linux This post though... | Must Have Free Windows 7 Software Open source/free... |
About the Author
3 Comments on “Fix for PixoPoint or Suckerfish Menu Expanding Behind Objects”
Write a Comment
Gravatars are small images that can show your personality. You can get your gravatar for free today!







That will only fix some problems. There are many other reasons for menus appearing below content, in particular Flash media …
http://pixopoint.com/2010/06/11/flash-and-dropdown-menus/
Like or Dislike:
1
0
[Reply]
lifehacker Reply:
September 30th, 2010 at 12:06 pm
@Ryan, Thanks for pointing it out.
I am including the link in post for those who might need it.
Like or Dislike:
0
0
[Reply]
Thank you so much! Solved the problem we had with the menu
Like or Dislike:
1
0
[Reply]