MyBB Community Forums

Full Version: re-araging admin cp
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
thinking of changeing the formate of the admin cp like moving things around wat file do i have to edit?
Can you give an example of what you want to change?
just move things around bring the things @ buttom to top and stuff like that. also change colors of text and yeah/
For the colors, you can change the admin styles located in admin/styles/Axiom/stylesheet.css

To move things around the page, you'll have to manually dig through the files in the admin directory. Just find the page which you want to edit (most URLs come in the form similar to: forums.php?action=addmod) and then open the forums.php and find something similar to
if($mybb->input['action'] == "addmod")
. The code in that block below that would generate the page you are looking at.

In short, there aren't templates that are used to generate the content on each page. You'll need some PHP knowledge to move stuff around the code.
thnx ill let u know if i need more help Toungue