**Added this fix to the latest update** 9970
Found a fix for the "Friend Lists" plugin. Currently the drop down on
smaller screens is positioned above the "Moderation" and "More" buttons
when you have the "Profile Cover" plugin. When you expand the Friend
Lists drop down it i difficult to navigate the drop down menu because
the "Moderation",and "More" buttons interfere. This simple css that you
can add to your custom css in the admin panel will set the z-index of
the Friend Lists drop down at a higher z-index position allowing the
drop down menu to appear over the "Moderation", and "More" buttons so
the menu can be easily navigated. I have seen this same thing with other
themes, but I'm giving you a fix here, and again, I am waiting to see
if the dev may add this simple fix tot the plugin before adding it to my
themes. If I do end up adding it, I will post it in the update section
so you can remove it from your custom css before updating.
.fl-context-w.fl-context-checked {
position: relative;
z-index: 10;
}