How can I make the lower right bar back to old?
-
sorry for my bad english i used the translation
-
Try adding this to your custom CSS in the ACP:
@media only screen and (min-device-width: 768px) { .topic .pagination-block { position: fixed; top: 0; z-index: 1040; bottom: auto; right: calc(50vw - 90px); height: 50px; } } @media only screen and (min-device-width: 1200px) { .topic .pagination-block { position: fixed; top: 0; z-index: 1040; bottom: auto; right: calc(50vw - 200px); height: 50px; } }
-
@onur-baran remove it completely? I thought you wanted it moved back up into the top bar?
Also, revised CSS that should work for all device sizes:
@media only screen and (min-device-width: 768px) { .topic .pagination-block { position: fixed; top: 0; z-index: 1040; bottom: auto; right: calc(50vw - 90px); height: 50px; } } @media only screen and (min-device-width: 1200px) { .topic .pagination-block { position: fixed; top: 0; z-index: 1040; bottom: auto; right: calc(50vw - 200px); height: 50px; } }
-
OP's preference is spot on for me as well, so thanks for this. I do not use mobile but for desktop/workstation my vote would be to make this the default.
Copyright © 2024 NodeBB | Contributors