MyBB Community Forums

Full Version: popup menu
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Howdy all.
I have problem with all popup menu idk how to get correct position.
[attachment=32334]
Here is a link to sample page with popup menu in multipage http://forum.serwertruck.eu/dzial-raporty--49
Use the popup menu CSS from default theme.
.popup_menu .popup_item_container {
 margin: 1px;
 text-align: left;
}

.popup_menu .popup_item {
 display: block;
 padding: 4px;
 white-space: nowrap;
 text-decoration: none;
}

.popup_menu a.popup_item:hover {
 text-decoration: none;
}

Also, you have multiple instances of this code across stylesheets (global.css and style.css), use it only in one place to avoid mistakes.