Page 1 of 1

Admin Section Header

Posted: Thu May 04, 2006 10:39 am
by genassist
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....

Re: Admin Section Header

Posted: Fri May 05, 2006 10:11 pm
by Dr.CSS
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

Re: Admin Section Header

Posted: Sat May 06, 2006 9:06 am
by genassist
Mark,

Perfect - thankyou very much indeed!

James

Re: Admin Section Header

Posted: Fri May 12, 2006 1:09 pm
by Muzzy
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.

Re: Admin Section Header

Posted: Fri May 12, 2006 1:27 pm
by Dr.CSS
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

Re: Admin Section Header

Posted: Mon May 15, 2006 6:18 am
by Muzzy
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.

Re: Admin Section Header

Posted: Wed May 17, 2006 1:14 am
by Elijah Lofgren
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.
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%;
  }

Re: Admin Section Header

Posted: Wed May 17, 2006 6:01 am
by Muzzy
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%;
  }
Thanks Elijah, will give it a go later.
Mike.