Dashboard UI Redesign
Permalink
Is this something that I can maybe modify and submit to someone here to possibly be used in the next version? I'm a long time user of C5 on almost all my projects but I constantly change the UI to fit my clients brand style so I thought maybe a face-lift might be something that is reasonable for me to donate my time to.
If this is something anyone wants to see let me know and I'll get started on it, just looking for a thumbs up.
If this is something anyone wants to see let me know and I'll get started on it, just looking for a thumbs up.
I think this is a good idea. There are several things that are good to change for a client to make it fit their needs better.
you already can. add this code to your site_theme_paths.php
you can change mytheme to whatever your chosen themes package handle is. you can also change the login, register, 404, and 403 pages in a similar way
you should keep in mind that the dashboard has a very unique look and feel though.
$v->setThemeByPath('/dashboard', 'mytheme');
$v->setThemeByPath('/page_forbidden', "mytheme"); $v->setThemeByPath('/page_not_found', "mytheme"); $v->setThemeByPath('/install', "mythteme"); $v->setThemeByPath('/login', "mytheme"); $v->setThemeByPath('/register', "mytheme");
you should keep in mind that the dashboard has a very unique look and feel though.