Need some help! I have been playing around with CMSMS, and am trying to modify the header on the admin section - adding to the title, changing colour etc. Have have managed to sort the footer, but no luck with the header. Seems to be calling for the variable 'logintitle' - but I can't find where this variable is set.
Any help greatly appreciated.
Can I also just say, how impressed I am with CMSMS - without doubt the best CMS I have played around with (in my opinion). Well done to everyone involved....
Admin Section Header
Re: Admin Section Header
in source,,
CMS Made Simple Admin Panel
in,,
yoursite\admin\themes\default\defaultTheme.php,,
echo ''.lang('adminpaneltitle').'';
in,, (if english)
yoursite\admin\lang\en_US\admin.inc.php
$lang['admin']['adminpaneltitle'] = 'CMS Made Simple Admin Panel'; // needs translation
that is for the header once logged in,,
logintitle is farther down,,
$lang['admin']['logintitle'] = 'CMS Made Simple Admin Login'; // needs translation
that what your looking for?
mark
CMS Made Simple Admin Panel
in,,
yoursite\admin\themes\default\defaultTheme.php,,
echo ''.lang('adminpaneltitle').'';
in,, (if english)
yoursite\admin\lang\en_US\admin.inc.php
$lang['admin']['adminpaneltitle'] = 'CMS Made Simple Admin Panel'; // needs translation
that is for the header once logged in,,
logintitle is farther down,,
$lang['admin']['logintitle'] = 'CMS Made Simple Admin Login'; // needs translation
that what your looking for?
mark
Re: Admin Section Header
Hi.
I have also been playing around with the admin panel, but would like to change the little logo tree with my own.
Does anyone know how or where I find the code/page to edit please.
Thanks.
Mike.
I have also been playing around with the admin panel, but would like to change the little logo tree with my own.
Does anyone know how or where I find the code/page to edit please.
Thanks.
Mike.
Re: Admin Section Header
in source,,
CMS Made Simple Admin Panel
in this folder..
cmsmadesimple\admin\themes\default
edit...
defaultTheme.php at line 88 edit....
echo ''.la.......
you can upload your logo to themes/default/images/..... then that line just needs the file name, or you have to give it the path to your logo... /uploads/images/nameoflogo.ext .png/.jpg/.bmp whatever the ext. is. it's better to upload to your themes/default/images/ folder, you won't have to figure out the path, the second example i gave is not the full path just an example.
mark
CMS Made Simple Admin Panel
in this folder..
cmsmadesimple\admin\themes\default
edit...
defaultTheme.php at line 88 edit....
echo ''.la.......
you can upload your logo to themes/default/images/..... then that line just needs the file name, or you have to give it the path to your logo... /uploads/images/nameoflogo.ext .png/.jpg/.bmp whatever the ext. is. it's better to upload to your themes/default/images/ folder, you won't have to figure out the path, the second example i gave is not the full path just an example.
mark
Re: Admin Section Header
Hi Mark.
Thanks, have changed logo for mine, works brilliantly.
Now....
Which is the file(s) I need to find to alter the background colours from the standard dark blue on the login page and the page when logged in please.
Thanks.
Mike.
Thanks, have changed logo for mine, works brilliantly.
Now....
Which is the file(s) I need to find to alter the background colours from the standard dark blue on the login page and the page when logged in please.
Thanks.
Mike.
- Elijah Lofgren
- Power Poster
- Posts: 811
- Joined: Mon Apr 24, 2006 1:01 am
Re: Admin Section Header
Open /admin/themes/default/css/style.css and find this section:muscroft wrote: Which is the file(s) I need to find to alter the background colours from the standard dark blue on the login page and the page when logged in please.
body {
font-size: 70%;
font-family: Verdana, Arial, Helvetica, sans-serif;
background-color: #385c72;
margin: 0px;
padding: 0px;
height: 100%;
}
Note: I don't have time to take on any more projects. I'm quite busy. I may be too busy to reply to emails or messages. Thanks for your understanding. 

Re: Admin Section Header
Thanks Elijah, will give it a go later.Elijah Lofgren wrote: Open /admin/themes/default/css/style.css and find this section:
body {
font-size: 70%;
font-family: Verdana, Arial, Helvetica, sans-serif;
background-color: #385c72;
margin: 0px;
padding: 0px;
height: 100%;
}
Mike.