- Affected version
- 2.2.5
Flash messages (e.g. "Your changes have been saved" message when editing posts) obstruct page navigation.
Instead of displaying them at the very top of the page, they should be displayed just below page navigation.
Using the following CSS to fix this issue, but should better calculate page navigation height:
Instead of displaying them at the very top of the page, they should be displayed just below page navigation.
Using the following CSS to fix this issue, but should better calculate page navigation height:
Code:
.flashMessage {
top: 36px;
}
@media (max-width: 650px) {
.flashMessage {
top: 49px;
}
}