Skip to main content
Topic: Some weirdo in admin page on smaller screen display? (Read 2046 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Some weirdo in admin page on smaller screen display?

It is on besocial variant and not on light (as it is fine light version) where there is some weirdo in admin page on smaller screen display. Basically the gap between the wrapper and top section is gone missing or something.

I think it is a css issue but I still couldn't find the culprit. I will try to find it but if anybody comes to its solution first, do post your fix.


Re: Some weirdo in admin page on smaller screen display?

Reply #1

I think that in one of the two was removed to make it look better.
Bugs creator.
Features destroyer.
Template killer.

Re: Some weirdo in admin page on smaller screen display?

Reply #2

And the one that was removed is the top padding for body via admin css file when viewed in smaller screen. Either removed the code for body zero padding in that file:
Code: [Select]
	body {
padding: 0;
}

Or add to the admin custom variant file:
Code: [Select]
/* Fix top padding in admin page */
@media screen and (max-width: 33.750em) {
body {
padding-top: 35px;
}
}

I think it would be better that the top padding is not turned off by default. It makes it look like a css bug. ;)