Fixed Height of moderator bar too small if only admin link shown

Jon W

Well-known member
Seems to be something to do with the link being inline/floated (something to do with line-height?), but when the user is an admin and not a moderator, the moderator bar loses a few pixels in height.

Note that this is not just a 1.2 issue.

Admin link only:
pic1.webp

Admin link and moderator link:
pic2.webp

Can be fixed by adding the following CSS (or something similar):
Code:
#moderatorBar .pageContent {
overflow: auto;
}
 
Last edited:
Top Bottom