Not a bug Flash messages obstruct page navigation

ivp

Active member
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:
Code:
.flashMessage {
	top: 36px;
}

@media (max-width: 650px) {
	.flashMessage {
		top: 49px;
	}
}
 
Feedback noted, though this is not something we would consider a bug. If you feel it's significant to you, you can use CSS to change it as you've demonstrated.
 
Top Bottom