We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version: 1.5.0
After adding FM fields to menu items, I found that the field group's CSS positions it in a manner that prevents editing the menu item label.
My temporary fix is to add the following CSS to unset .fm-field's position: relative, which fixes the issue, even if it's not the root cause.
.fm-field
position: relative
.fm-wrapper[class*='fm-<GROUP_NAME>'] { .fm-item.fm-field { position: unset; } }
Here I have the FM field wrapper highlighted, which I hope demonstrates the issue.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version: 1.5.0
After adding FM fields to menu items, I found that the field group's CSS positions it in a manner that prevents editing the menu item label.
My temporary fix is to add the following CSS to unset
.fm-field
'sposition: relative
, which fixes the issue, even if it's not the root cause.Here I have the FM field wrapper highlighted, which I hope demonstrates the issue.
The text was updated successfully, but these errors were encountered: