Custom pages are a great way to add any content to your app. If you have ever created your own custom pages, you may have noticed that quite a lot of space is wasted to the left and to the right of the actual content:
Do you see the useless margins? In this case, the content is even too wide for the content-container and a scrollbar appears at the bottom. That doesn't have to be!
With a simple trick you can widen the usable area. Just place that script in your custom page:
<!-- file: your_custom_page_file.php --> <script> jQuery(".users-area.container").addClass("container-fluid").removeClass("container"); </script>
This gives you smaller margins on the left and right, so that you get more usable space.
In this case, I can gain enough space so that the actual content is fully visible.
Hope you like it!
Do you like it?
We can only get better if you give us constructive suggestions for improvement. Just voting "No" without giving reasons or suggestions is not helpful and cannot lead to changes.
If you have been searching for a completely different solution than the subject says, this article can not be and will not be helpful for you. In these cases you should consider not to vote.
This is website feedback, only. This voting is not a support form nor ticket system.