Admin Section Header

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Locked
genassist

Admin Section Header

Post 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....
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Admin Section Header

Post 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
genassist

Re: Admin Section Header

Post by genassist »

Mark,

Perfect - thankyou very much indeed!

James
Muzzy

Re: Admin Section Header

Post 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.
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Admin Section Header

Post 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
Muzzy

Re: Admin Section Header

Post 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.
User avatar
Elijah Lofgren
Power Poster
Power Poster
Posts: 811
Joined: Mon Apr 24, 2006 1:01 am

Re: Admin Section Header

Post 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%;
  }
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. :)
Muzzy

Re: Admin Section Header

Post 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.
Locked

Return to “Layout and Design (CSS & HTML)”